[][src]Struct rusoto_batch::JobQueueDetail

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

compute_environment_order: Vec<ComputeEnvironmentOrder>

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.

job_queue_arn: String

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

job_queue_name: String

The name of the job queue.

priority: i64

The priority of the job queue.

state: String

Describes the ability of the queue to accept new jobs.

status: Option<String>

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

status_reason: Option<String>

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

Trait Implementations

impl Clone for JobQueueDetail[src]

impl Debug for JobQueueDetail[src]

impl Default for JobQueueDetail[src]

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

impl PartialEq<JobQueueDetail> for JobQueueDetail[src]

impl StructuralPartialEq for JobQueueDetail[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.