#[non_exhaustive]pub struct ListJobsByStatusInput { /* private fields */ }
Expand description
The ListJobsByStatusRequest
structure.
Implementations§
source§impl ListJobsByStatusInput
impl ListJobsByStatusInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobsByStatus, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobsByStatus, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListJobsByStatus
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListJobsByStatusInput
.
source§impl ListJobsByStatusInput
impl ListJobsByStatusInput
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
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) -> Option<&str>
pub fn ascending(&self) -> Option<&str>
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) -> Option<&str>
pub fn page_token(&self) -> Option<&str>
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
Trait Implementations§
source§impl Clone for ListJobsByStatusInput
impl Clone for ListJobsByStatusInput
source§fn clone(&self) -> ListJobsByStatusInput
fn clone(&self) -> ListJobsByStatusInput
Returns a copy 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 ListJobsByStatusInput
impl Debug for ListJobsByStatusInput
source§impl PartialEq<ListJobsByStatusInput> for ListJobsByStatusInput
impl PartialEq<ListJobsByStatusInput> for ListJobsByStatusInput
source§fn eq(&self, other: &ListJobsByStatusInput) -> bool
fn eq(&self, other: &ListJobsByStatusInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.