Struct aws_sdk_elastictranscoder::operation::list_jobs_by_pipeline::builders::ListJobsByPipelineInputBuilder
source · #[non_exhaustive]pub struct ListJobsByPipelineInputBuilder { /* private fields */ }
Expand description
A builder for ListJobsByPipelineInput
.
Implementations§
source§impl ListJobsByPipelineInputBuilder
impl ListJobsByPipelineInputBuilder
sourcepub fn pipeline_id(self, input: impl Into<String>) -> Self
pub fn pipeline_id(self, input: impl Into<String>) -> Self
The ID of the pipeline for which you want to get job information.
This field is required.sourcepub fn set_pipeline_id(self, input: Option<String>) -> Self
pub fn set_pipeline_id(self, input: Option<String>) -> Self
The ID of the pipeline for which you want to get job information.
sourcepub fn get_pipeline_id(&self) -> &Option<String>
pub fn get_pipeline_id(&self) -> &Option<String>
The ID of the pipeline for which you want to get job information.
sourcepub fn ascending(self, input: impl Into<String>) -> Self
pub fn ascending(self, input: impl Into<String>) -> Self
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 set_ascending(self, input: Option<String>) -> Self
pub fn set_ascending(self, input: Option<String>) -> Self
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 get_ascending(&self) -> &Option<String>
pub fn get_ascending(&self) -> &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
.
sourcepub fn page_token(self, input: impl Into<String>) -> Self
pub fn page_token(self, input: impl Into<String>) -> Self
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
sourcepub fn set_page_token(self, input: Option<String>) -> Self
pub fn set_page_token(self, input: Option<String>) -> Self
When Elastic Transcoder returns more than one page of results, use pageToken
in subsequent GET
requests to get each successive page of results.
sourcepub fn get_page_token(&self) -> &Option<String>
pub fn get_page_token(&self) -> &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.
sourcepub fn build(self) -> Result<ListJobsByPipelineInput, BuildError>
pub fn build(self) -> Result<ListJobsByPipelineInput, BuildError>
Consumes the builder and constructs a ListJobsByPipelineInput
.
source§impl ListJobsByPipelineInputBuilder
impl ListJobsByPipelineInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListJobsByPipelineOutput, SdkError<ListJobsByPipelineError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListJobsByPipelineOutput, SdkError<ListJobsByPipelineError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListJobsByPipelineInputBuilder
impl Clone for ListJobsByPipelineInputBuilder
source§fn clone(&self) -> ListJobsByPipelineInputBuilder
fn clone(&self) -> ListJobsByPipelineInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListJobsByPipelineInputBuilder
impl Default for ListJobsByPipelineInputBuilder
source§fn default() -> ListJobsByPipelineInputBuilder
fn default() -> ListJobsByPipelineInputBuilder
source§impl PartialEq for ListJobsByPipelineInputBuilder
impl PartialEq for ListJobsByPipelineInputBuilder
source§fn eq(&self, other: &ListJobsByPipelineInputBuilder) -> bool
fn eq(&self, other: &ListJobsByPipelineInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListJobsByPipelineInputBuilder
Auto Trait Implementations§
impl Freeze for ListJobsByPipelineInputBuilder
impl RefUnwindSafe for ListJobsByPipelineInputBuilder
impl Send for ListJobsByPipelineInputBuilder
impl Sync for ListJobsByPipelineInputBuilder
impl Unpin for ListJobsByPipelineInputBuilder
impl UnwindSafe for ListJobsByPipelineInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more