#[non_exhaustive]pub struct ListJobsByStatusInput { /* private fields */ }
Expand description
The ListJobsByStatusRequest
structure.
Implementations
sourceimpl 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
.
sourceimpl 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
sourceimpl Clone for ListJobsByStatusInput
impl Clone for ListJobsByStatusInput
sourcefn clone(&self) -> ListJobsByStatusInput
fn clone(&self) -> ListJobsByStatusInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ListJobsByStatusInput
impl Debug for ListJobsByStatusInput
sourceimpl PartialEq<ListJobsByStatusInput> for ListJobsByStatusInput
impl PartialEq<ListJobsByStatusInput> for ListJobsByStatusInput
sourcefn eq(&self, other: &ListJobsByStatusInput) -> bool
fn eq(&self, other: &ListJobsByStatusInput) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more