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

pub struct JobDefinitionProperties {
    pub container_properties: Value<ContainerProperties>,
    pub job_definition_name: Option<Value<String>>,
    pub parameters: Option<Value<Value>>,
    pub retry_strategy: Option<Value<RetryStrategy>>,
    pub type_: Value<String>,
}

Properties for the JobDefinition resource.

Fields

Property ContainerProperties.

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

Property JobDefinitionName.

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

Property Parameters.

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

Property RetryStrategy.

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

Property Type.

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

Trait Implementations

impl Debug for JobDefinitionProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for JobDefinitionProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<JobDefinitionProperties> for JobDefinition
[src]

[src]

Performs the conversion.

Auto Trait Implementations