Struct aws_sdk_sagemaker::operation::list_pipeline_execution_steps::builders::ListPipelineExecutionStepsOutputBuilder
source · #[non_exhaustive]pub struct ListPipelineExecutionStepsOutputBuilder { /* private fields */ }
Expand description
A builder for ListPipelineExecutionStepsOutput
.
Implementations§
source§impl ListPipelineExecutionStepsOutputBuilder
impl ListPipelineExecutionStepsOutputBuilder
sourcepub fn pipeline_execution_steps(self, input: PipelineExecutionStep) -> Self
pub fn pipeline_execution_steps(self, input: PipelineExecutionStep) -> Self
Appends an item to pipeline_execution_steps
.
To override the contents of this collection use set_pipeline_execution_steps
.
A list of PipeLineExecutionStep
objects. Each PipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.
sourcepub fn set_pipeline_execution_steps(
self,
input: Option<Vec<PipelineExecutionStep>>,
) -> Self
pub fn set_pipeline_execution_steps( self, input: Option<Vec<PipelineExecutionStep>>, ) -> Self
A list of PipeLineExecutionStep
objects. Each PipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.
sourcepub fn get_pipeline_execution_steps(
&self,
) -> &Option<Vec<PipelineExecutionStep>>
pub fn get_pipeline_execution_steps( &self, ) -> &Option<Vec<PipelineExecutionStep>>
A list of PipeLineExecutionStep
objects. Each PipeLineExecutionStep
consists of StepName, StartTime, EndTime, StepStatus, and Metadata. Metadata is an object with properties for each job that contains relevant information about the job created by the step.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If the result of the previous ListPipelineExecutionSteps
request was truncated, the response includes a NextToken
. To retrieve the next set of pipeline execution steps, use the token in the next request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If the result of the previous ListPipelineExecutionSteps
request was truncated, the response includes a NextToken
. To retrieve the next set of pipeline execution steps, use the token in the next request.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If the result of the previous ListPipelineExecutionSteps
request was truncated, the response includes a NextToken
. To retrieve the next set of pipeline execution steps, use the token in the next request.
sourcepub fn build(self) -> ListPipelineExecutionStepsOutput
pub fn build(self) -> ListPipelineExecutionStepsOutput
Consumes the builder and constructs a ListPipelineExecutionStepsOutput
.
Trait Implementations§
source§impl Clone for ListPipelineExecutionStepsOutputBuilder
impl Clone for ListPipelineExecutionStepsOutputBuilder
source§fn clone(&self) -> ListPipelineExecutionStepsOutputBuilder
fn clone(&self) -> ListPipelineExecutionStepsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListPipelineExecutionStepsOutputBuilder
impl Default for ListPipelineExecutionStepsOutputBuilder
source§fn default() -> ListPipelineExecutionStepsOutputBuilder
fn default() -> ListPipelineExecutionStepsOutputBuilder
source§impl PartialEq for ListPipelineExecutionStepsOutputBuilder
impl PartialEq for ListPipelineExecutionStepsOutputBuilder
source§fn eq(&self, other: &ListPipelineExecutionStepsOutputBuilder) -> bool
fn eq(&self, other: &ListPipelineExecutionStepsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListPipelineExecutionStepsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListPipelineExecutionStepsOutputBuilder
impl RefUnwindSafe for ListPipelineExecutionStepsOutputBuilder
impl Send for ListPipelineExecutionStepsOutputBuilder
impl Sync for ListPipelineExecutionStepsOutputBuilder
impl Unpin for ListPipelineExecutionStepsOutputBuilder
impl UnwindSafe for ListPipelineExecutionStepsOutputBuilder
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