Struct aws_sdk_batch::operation::get_job_queue_snapshot::builders::GetJobQueueSnapshotFluentBuilder
source · pub struct GetJobQueueSnapshotFluentBuilder { /* private fields */ }Expand description
Fluent builder constructing a request to GetJobQueueSnapshot.
Provides a list of the first 100 RUNNABLE jobs associated to a single job queue.
Implementations§
source§impl GetJobQueueSnapshotFluentBuilder
impl GetJobQueueSnapshotFluentBuilder
sourcepub fn as_input(&self) -> &GetJobQueueSnapshotInputBuilder
pub fn as_input(&self) -> &GetJobQueueSnapshotInputBuilder
Access the GetJobQueueSnapshot as a reference.
sourcepub async fn send(
self,
) -> Result<GetJobQueueSnapshotOutput, SdkError<GetJobQueueSnapshotError, HttpResponse>>
pub async fn send( self, ) -> Result<GetJobQueueSnapshotOutput, SdkError<GetJobQueueSnapshotError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self,
) -> CustomizableOperation<GetJobQueueSnapshotOutput, GetJobQueueSnapshotError, Self>
pub fn customize( self, ) -> CustomizableOperation<GetJobQueueSnapshotOutput, GetJobQueueSnapshotError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn job_queue(self, input: impl Into<String>) -> Self
pub fn job_queue(self, input: impl Into<String>) -> Self
The job queue’s name or full queue Amazon Resource Name (ARN).
sourcepub fn set_job_queue(self, input: Option<String>) -> Self
pub fn set_job_queue(self, input: Option<String>) -> Self
The job queue’s name or full queue Amazon Resource Name (ARN).
sourcepub fn get_job_queue(&self) -> &Option<String>
pub fn get_job_queue(&self) -> &Option<String>
The job queue’s name or full queue Amazon Resource Name (ARN).
Trait Implementations§
source§impl Clone for GetJobQueueSnapshotFluentBuilder
impl Clone for GetJobQueueSnapshotFluentBuilder
source§fn clone(&self) -> GetJobQueueSnapshotFluentBuilder
fn clone(&self) -> GetJobQueueSnapshotFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for GetJobQueueSnapshotFluentBuilder
impl !RefUnwindSafe for GetJobQueueSnapshotFluentBuilder
impl Send for GetJobQueueSnapshotFluentBuilder
impl Sync for GetJobQueueSnapshotFluentBuilder
impl Unpin for GetJobQueueSnapshotFluentBuilder
impl !UnwindSafe for GetJobQueueSnapshotFluentBuilder
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