pub struct ListJobsByStatusRequest {
pub ascending: Option<String>,
pub page_token: Option<String>,
pub status: String,
}
Expand description
The ListJobsByStatusRequest
structure.
Fields§
§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.
status: 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
.
Trait Implementations§
Source§impl Clone for ListJobsByStatusRequest
impl Clone for ListJobsByStatusRequest
Source§fn clone(&self) -> ListJobsByStatusRequest
fn clone(&self) -> ListJobsByStatusRequest
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 ListJobsByStatusRequest
impl Debug for ListJobsByStatusRequest
Source§impl Default for ListJobsByStatusRequest
impl Default for ListJobsByStatusRequest
Source§fn default() -> ListJobsByStatusRequest
fn default() -> ListJobsByStatusRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for ListJobsByStatusRequest
impl PartialEq for ListJobsByStatusRequest
Source§impl Serialize for ListJobsByStatusRequest
impl Serialize for ListJobsByStatusRequest
impl StructuralPartialEq for ListJobsByStatusRequest
Auto Trait Implementations§
impl Freeze for ListJobsByStatusRequest
impl RefUnwindSafe for ListJobsByStatusRequest
impl Send for ListJobsByStatusRequest
impl Sync for ListJobsByStatusRequest
impl Unpin for ListJobsByStatusRequest
impl UnwindSafe for ListJobsByStatusRequest
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