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

pub struct JobQueueProperties {
    pub compute_environment_order: ValueList<ComputeEnvironmentOrder>,
    pub job_queue_name: Option<Value<String>>,
    pub priority: Value<u32>,
    pub state: Option<Value<String>>,
}

Properties for the JobQueue resource.

Fields

Property ComputeEnvironmentOrder.

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

Property JobQueueName.

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

Property Priority.

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.

Trait Implementations

impl Debug for JobQueueProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for JobQueueProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for JobQueueProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<JobQueueProperties> for JobQueue
[src]

[src]

Performs the conversion.

Auto Trait Implementations