Struct rusoto_batch::JobQueueDetail[][src]

pub struct JobQueueDetail {
    pub compute_environment_order: Vec<ComputeEnvironmentOrder>,
    pub job_queue_arn: String,
    pub job_queue_name: String,
    pub priority: i64,
    pub state: String,
    pub status: Option<String>,
    pub status_reason: Option<String>,
}

An object representing the details of an AWS Batch job queue.

Fields

The compute environments that are attached to the job queue and the order in which job placement is preferred. Compute environments are selected for job placement in ascending order.

The Amazon Resource Name (ARN) of the job queue.

The name of the job queue.

The priority of the job queue.

Describes the ability of the queue to accept new jobs.

The status of the job queue (for example, CREATING or VALID).

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

Trait Implementations

impl Default for JobQueueDetail
[src]

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

impl Debug for JobQueueDetail
[src]

Formats the value using the given formatter. Read more

impl Clone for JobQueueDetail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for JobQueueDetail
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations