Struct rusoto_batch::ComputeEnvironmentOrder [] [src]

pub struct ComputeEnvironmentOrder {
    pub compute_environment: String,
    pub order: i64,
}

The order in which compute environments are tried for job placement within a queue. Compute environments are tried in ascending order. For example, if two compute environments are associated with a job queue, the compute environment with a lower order integer value is tried for job placement first.

Fields

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

The order of the compute environment.

Trait Implementations

impl Default for ComputeEnvironmentOrder
[src]

[src]

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

impl Debug for ComputeEnvironmentOrder
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ComputeEnvironmentOrder
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations