Struct aws_sdk_batch::operation::get_job_queue_snapshot::builders::GetJobQueueSnapshotOutputBuilder
source · #[non_exhaustive]pub struct GetJobQueueSnapshotOutputBuilder { /* private fields */ }Expand description
A builder for GetJobQueueSnapshotOutput.
Implementations§
source§impl GetJobQueueSnapshotOutputBuilder
impl GetJobQueueSnapshotOutputBuilder
sourcepub fn front_of_queue(self, input: FrontOfQueueDetail) -> Self
pub fn front_of_queue(self, input: FrontOfQueueDetail) -> Self
The list of the first 100 RUNNABLE jobs in each job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.
sourcepub fn set_front_of_queue(self, input: Option<FrontOfQueueDetail>) -> Self
pub fn set_front_of_queue(self, input: Option<FrontOfQueueDetail>) -> Self
The list of the first 100 RUNNABLE jobs in each job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.
sourcepub fn get_front_of_queue(&self) -> &Option<FrontOfQueueDetail>
pub fn get_front_of_queue(&self) -> &Option<FrontOfQueueDetail>
The list of the first 100 RUNNABLE jobs in each job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.
sourcepub fn build(self) -> GetJobQueueSnapshotOutput
pub fn build(self) -> GetJobQueueSnapshotOutput
Consumes the builder and constructs a GetJobQueueSnapshotOutput.
Trait Implementations§
source§impl Clone for GetJobQueueSnapshotOutputBuilder
impl Clone for GetJobQueueSnapshotOutputBuilder
source§fn clone(&self) -> GetJobQueueSnapshotOutputBuilder
fn clone(&self) -> GetJobQueueSnapshotOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for GetJobQueueSnapshotOutputBuilder
impl Default for GetJobQueueSnapshotOutputBuilder
source§fn default() -> GetJobQueueSnapshotOutputBuilder
fn default() -> GetJobQueueSnapshotOutputBuilder
source§impl PartialEq for GetJobQueueSnapshotOutputBuilder
impl PartialEq for GetJobQueueSnapshotOutputBuilder
source§fn eq(&self, other: &GetJobQueueSnapshotOutputBuilder) -> bool
fn eq(&self, other: &GetJobQueueSnapshotOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetJobQueueSnapshotOutputBuilder
Auto Trait Implementations§
impl Freeze for GetJobQueueSnapshotOutputBuilder
impl RefUnwindSafe for GetJobQueueSnapshotOutputBuilder
impl Send for GetJobQueueSnapshotOutputBuilder
impl Sync for GetJobQueueSnapshotOutputBuilder
impl Unpin for GetJobQueueSnapshotOutputBuilder
impl UnwindSafe for GetJobQueueSnapshotOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more