Struct aws_sdk_elastictranscoder::operation::list_jobs_by_pipeline::builders::ListJobsByPipelineOutputBuilder
source · #[non_exhaustive]pub struct ListJobsByPipelineOutputBuilder { /* private fields */ }
Expand description
A builder for ListJobsByPipelineOutput
.
Implementations§
source§impl ListJobsByPipelineOutputBuilder
impl ListJobsByPipelineOutputBuilder
sourcepub fn jobs(self, input: Job) -> Self
pub fn jobs(self, input: Job) -> Self
Appends an item to jobs
.
To override the contents of this collection use set_jobs
.
An array of Job
objects that are in the specified pipeline.
sourcepub fn set_jobs(self, input: Option<Vec<Job>>) -> Self
pub fn set_jobs(self, input: Option<Vec<Job>>) -> Self
An array of Job
objects that are in the specified pipeline.
sourcepub fn get_jobs(&self) -> &Option<Vec<Job>>
pub fn get_jobs(&self) -> &Option<Vec<Job>>
An array of Job
objects that are in the specified pipeline.
sourcepub fn next_page_token(self, input: impl Into<String>) -> Self
pub fn next_page_token(self, input: impl Into<String>) -> Self
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of NextPageToken
is null
.
sourcepub fn set_next_page_token(self, input: Option<String>) -> Self
pub fn set_next_page_token(self, input: Option<String>) -> Self
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of NextPageToken
is null
.
sourcepub fn get_next_page_token(&self) -> &Option<String>
pub fn get_next_page_token(&self) -> &Option<String>
A value that you use to access the second and subsequent pages of results, if any. When the jobs in the specified pipeline fit on one page or when you've reached the last page of results, the value of NextPageToken
is null
.
sourcepub fn build(self) -> ListJobsByPipelineOutput
pub fn build(self) -> ListJobsByPipelineOutput
Consumes the builder and constructs a ListJobsByPipelineOutput
.
Trait Implementations§
source§impl Clone for ListJobsByPipelineOutputBuilder
impl Clone for ListJobsByPipelineOutputBuilder
source§fn clone(&self) -> ListJobsByPipelineOutputBuilder
fn clone(&self) -> ListJobsByPipelineOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListJobsByPipelineOutputBuilder
impl Default for ListJobsByPipelineOutputBuilder
source§fn default() -> ListJobsByPipelineOutputBuilder
fn default() -> ListJobsByPipelineOutputBuilder
source§impl PartialEq for ListJobsByPipelineOutputBuilder
impl PartialEq for ListJobsByPipelineOutputBuilder
source§fn eq(&self, other: &ListJobsByPipelineOutputBuilder) -> bool
fn eq(&self, other: &ListJobsByPipelineOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListJobsByPipelineOutputBuilder
Auto Trait Implementations§
impl Freeze for ListJobsByPipelineOutputBuilder
impl RefUnwindSafe for ListJobsByPipelineOutputBuilder
impl Send for ListJobsByPipelineOutputBuilder
impl Sync for ListJobsByPipelineOutputBuilder
impl Unpin for ListJobsByPipelineOutputBuilder
impl UnwindSafe for ListJobsByPipelineOutputBuilder
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