#[non_exhaustive]pub struct ListJobsByPipelineInput {
pub pipeline_id: Option<String>,
pub ascending: Option<String>,
pub page_token: Option<String>,
}
Expand description
The ListJobsByPipelineRequest
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.pipeline_id: Option<String>
The ID of the pipeline for which you want to get job information.
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<ListJobsByPipeline, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListJobsByPipeline, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListJobsByPipeline
>
Creates a new builder-style object to manufacture ListJobsByPipelineInput
The ID of the pipeline for which you want to get job information.
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 ListJobsByPipelineInput
impl Send for ListJobsByPipelineInput
impl Sync for ListJobsByPipelineInput
impl Unpin for ListJobsByPipelineInput
impl UnwindSafe for ListJobsByPipelineInput
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