#[non_exhaustive]pub struct ListJobsByStatusInput { /* private fields */ }
Expand description
The ListJobsByStatusRequest
structure.
Implementations§
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.
source§impl ListJobsByStatusInput
impl ListJobsByStatusInput
sourcepub fn builder() -> ListJobsByStatusInputBuilder
pub fn builder() -> ListJobsByStatusInputBuilder
Creates a new builder-style object to manufacture ListJobsByStatusInput
.
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
>
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 ==
.impl StructuralPartialEq for ListJobsByStatusInput
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§
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
Mutably borrows from an owned value. Read more