Struct aws_sdk_elastictranscoder::operation::list_jobs_by_status::builders::ListJobsByStatusInputBuilder
source · #[non_exhaustive]pub struct ListJobsByStatusInputBuilder { /* private fields */ }
Expand description
A builder for ListJobsByStatusInput
.
Implementations§
source§impl ListJobsByStatusInputBuilder
impl ListJobsByStatusInputBuilder
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
To get information about all of the jobs associated with the current AWS account that have a given status, specify the following status: Submitted
, Progressing
, Complete
, Canceled
, or Error
.
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
To get information about all of the jobs associated with the current AWS account that have a given status, specify the following status: Submitted
, Progressing
, Complete
, Canceled
, or Error
.
sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
To get information about all of the jobs associated with the current AWS account that have a given status, specify the following status: Submitted
, Progressing
, Complete
, Canceled
, or Error
.
sourcepub fn ascending(self, input: impl Into<String>) -> Self
pub fn ascending(self, input: impl Into<String>) -> Self
To list jobs in chronological order by the date and time that they were submitted, enter true
. To list jobs in reverse chronological order, enter false
.
sourcepub fn set_ascending(self, input: Option<String>) -> Self
pub fn set_ascending(self, input: Option<String>) -> Self
To list jobs in chronological order by the date and time that they were submitted, enter true
. To list jobs in reverse chronological order, enter false
.
sourcepub fn get_ascending(&self) -> &Option<String>
pub fn get_ascending(&self) -> &Option<String>
To list jobs in chronological order by the date and time that they were submitted, enter true
. To list jobs in reverse chronological order, enter false
.
sourcepub fn page_token(self, input: impl Into<String>) -> Self
pub fn page_token(self, input: impl Into<String>) -> Self
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
sourcepub fn set_page_token(self, input: Option<String>) -> Self
pub fn set_page_token(self, input: Option<String>) -> Self
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
sourcepub fn get_page_token(&self) -> &Option<String>
pub fn get_page_token(&self) -> &Option<String>
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
sourcepub fn build(self) -> Result<ListJobsByStatusInput, BuildError>
pub fn build(self) -> Result<ListJobsByStatusInput, BuildError>
Consumes the builder and constructs a ListJobsByStatusInput
.
source§impl ListJobsByStatusInputBuilder
impl ListJobsByStatusInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListJobsByStatusOutput, SdkError<ListJobsByStatusError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListJobsByStatusOutput, SdkError<ListJobsByStatusError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListJobsByStatusInputBuilder
impl Clone for ListJobsByStatusInputBuilder
source§fn clone(&self) -> ListJobsByStatusInputBuilder
fn clone(&self) -> ListJobsByStatusInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListJobsByStatusInputBuilder
impl Debug for ListJobsByStatusInputBuilder
source§impl Default for ListJobsByStatusInputBuilder
impl Default for ListJobsByStatusInputBuilder
source§fn default() -> ListJobsByStatusInputBuilder
fn default() -> ListJobsByStatusInputBuilder
source§impl PartialEq for ListJobsByStatusInputBuilder
impl PartialEq for ListJobsByStatusInputBuilder
source§fn eq(&self, other: &ListJobsByStatusInputBuilder) -> bool
fn eq(&self, other: &ListJobsByStatusInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListJobsByStatusInputBuilder
Auto Trait Implementations§
impl Freeze for ListJobsByStatusInputBuilder
impl RefUnwindSafe for ListJobsByStatusInputBuilder
impl Send for ListJobsByStatusInputBuilder
impl Sync for ListJobsByStatusInputBuilder
impl Unpin for ListJobsByStatusInputBuilder
impl UnwindSafe for ListJobsByStatusInputBuilder
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