[][src]Struct rusoto_batch::ComputeEnvironmentDetail

pub struct ComputeEnvironmentDetail {
    pub compute_environment_arn: String,
    pub compute_environment_name: String,
    pub compute_resources: Option<ComputeResource>,
    pub ecs_cluster_arn: String,
    pub service_role: Option<String>,
    pub state: Option<String>,
    pub status: Option<String>,
    pub status_reason: Option<String>,
    pub type_: Option<String>,
}

An object representing an AWS Batch compute environment.

Fields

compute_environment_arn: String

The Amazon Resource Name (ARN) of the compute environment.

compute_environment_name: String

The name of the compute environment.

compute_resources: Option<ComputeResource>

The compute resources defined for the compute environment.

ecs_cluster_arn: String

The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

service_role: Option<String>

The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

state: Option<String>

The state of the compute environment. The valid values are ENABLED or DISABLED.

If the state is ENABLED, then the AWS Batch scheduler can attempt to place jobs from an associated job queue on the compute resources within the environment. If the compute environment is managed, then it can scale its instances out or in automatically, based on the job queue demand.

If the state is DISABLED, then the AWS Batch scheduler does not attempt to place jobs within the environment. Jobs in a STARTING or RUNNING state continue to progress normally. Managed compute environments in the DISABLED state do not scale out. However, they scale in to minvCpus value after instances become idle.

status: Option<String>

The current status of the compute environment (for example, CREATING or VALID).

status_reason: Option<String>

A short, human-readable string to provide additional details about the current status of the compute environment.

type_: Option<String>

The type of the compute environment.

Trait Implementations

impl PartialEq<ComputeEnvironmentDetail> for ComputeEnvironmentDetail[src]

impl Default for ComputeEnvironmentDetail[src]

impl Clone for ComputeEnvironmentDetail[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ComputeEnvironmentDetail[src]

impl<'de> Deserialize<'de> for ComputeEnvironmentDetail[src]

Auto Trait Implementations

impl Send for ComputeEnvironmentDetail

impl Sync for ComputeEnvironmentDetail

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self