#[non_exhaustive]pub struct ListJobsByStatusInput {
pub status: Option<String>,
pub ascending: Option<String>,
pub page_token: Option<String>,
}
Expand description
The ListJobsByStatusRequest
structure.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.status: 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
.
ascending: 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
.
page_token: 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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobsByStatus, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobsByStatus, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListJobsByStatus
>
Creates a new builder-style object to manufacture ListJobsByStatusInput
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
.
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
.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListJobsByStatusInput
impl Send for ListJobsByStatusInput
impl Sync for ListJobsByStatusInput
impl Unpin for ListJobsByStatusInput
impl UnwindSafe for ListJobsByStatusInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more