Struct cfn::aws::batch::ComputeEnvironmentProperties [] [src]

pub struct ComputeEnvironmentProperties {
    pub compute_environment_name: Option<Value<String>>,
    pub compute_resources: Value<ComputeResources>,
    pub service_role: Value<String>,
    pub state: Option<Value<String>>,
    pub type_: Value<String>,
}

Properties for the ComputeEnvironment resource.

Fields

Property ComputeEnvironmentName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property ComputeResources.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property ServiceRole.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property State.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Property Type.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Trait Implementations

impl Debug for ComputeEnvironmentProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for ComputeEnvironmentProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<ComputeEnvironmentProperties> for ComputeEnvironment
[src]

[src]

Performs the conversion.

Auto Trait Implementations