Struct aws_sdk_sagemaker::operation::list_processing_jobs::builders::ListProcessingJobsOutputBuilder
source · #[non_exhaustive]pub struct ListProcessingJobsOutputBuilder { /* private fields */ }
Expand description
A builder for ListProcessingJobsOutput
.
Implementations§
source§impl ListProcessingJobsOutputBuilder
impl ListProcessingJobsOutputBuilder
sourcepub fn processing_job_summaries(self, input: ProcessingJobSummary) -> Self
pub fn processing_job_summaries(self, input: ProcessingJobSummary) -> Self
Appends an item to processing_job_summaries
.
To override the contents of this collection use set_processing_job_summaries
.
An array of ProcessingJobSummary
objects, each listing a processing job.
sourcepub fn set_processing_job_summaries(
self,
input: Option<Vec<ProcessingJobSummary>>
) -> Self
pub fn set_processing_job_summaries( self, input: Option<Vec<ProcessingJobSummary>> ) -> Self
An array of ProcessingJobSummary
objects, each listing a processing job.
sourcepub fn get_processing_job_summaries(&self) -> &Option<Vec<ProcessingJobSummary>>
pub fn get_processing_job_summaries(&self) -> &Option<Vec<ProcessingJobSummary>>
An array of ProcessingJobSummary
objects, each listing a processing job.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of processing jobs, use it in the subsequent request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of processing jobs, use it in the subsequent request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of processing jobs, use it in the subsequent request.
sourcepub fn build(self) -> ListProcessingJobsOutput
pub fn build(self) -> ListProcessingJobsOutput
Consumes the builder and constructs a ListProcessingJobsOutput
.
Trait Implementations§
source§impl Clone for ListProcessingJobsOutputBuilder
impl Clone for ListProcessingJobsOutputBuilder
source§fn clone(&self) -> ListProcessingJobsOutputBuilder
fn clone(&self) -> ListProcessingJobsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListProcessingJobsOutputBuilder
impl Default for ListProcessingJobsOutputBuilder
source§fn default() -> ListProcessingJobsOutputBuilder
fn default() -> ListProcessingJobsOutputBuilder
source§impl PartialEq for ListProcessingJobsOutputBuilder
impl PartialEq for ListProcessingJobsOutputBuilder
source§fn eq(&self, other: &ListProcessingJobsOutputBuilder) -> bool
fn eq(&self, other: &ListProcessingJobsOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListProcessingJobsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListProcessingJobsOutputBuilder
impl RefUnwindSafe for ListProcessingJobsOutputBuilder
impl Send for ListProcessingJobsOutputBuilder
impl Sync for ListProcessingJobsOutputBuilder
impl Unpin for ListProcessingJobsOutputBuilder
impl UnwindSafe for ListProcessingJobsOutputBuilder
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> 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