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>,
}Expand description
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: StringThe Amazon Resource Name (ARN) of the job queue.
job_queue_name: StringThe name of the job queue.
priority: i64The priority of the job queue.
state: StringDescribes 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§
Source§impl Clone for JobQueueDetail
impl Clone for JobQueueDetail
Source§fn clone(&self) -> JobQueueDetail
fn clone(&self) -> JobQueueDetail
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for JobQueueDetail
impl Debug for JobQueueDetail
Source§impl Default for JobQueueDetail
impl Default for JobQueueDetail
Source§fn default() -> JobQueueDetail
fn default() -> JobQueueDetail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobQueueDetail
impl<'de> Deserialize<'de> for JobQueueDetail
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for JobQueueDetail
impl PartialEq for JobQueueDetail
impl StructuralPartialEq for JobQueueDetail
Auto Trait Implementations§
impl Freeze for JobQueueDetail
impl RefUnwindSafe for JobQueueDetail
impl Send for JobQueueDetail
impl Sync for JobQueueDetail
impl Unpin for JobQueueDetail
impl UnwindSafe for JobQueueDetail
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more