Struct aws_sdk_sagemaker::operation::list_pipeline_execution_steps::builders::ListPipelineExecutionStepsInputBuilder
source · #[non_exhaustive]pub struct ListPipelineExecutionStepsInputBuilder { /* private fields */ }
Expand description
A builder for ListPipelineExecutionStepsInput
.
Implementations§
source§impl ListPipelineExecutionStepsInputBuilder
impl ListPipelineExecutionStepsInputBuilder
sourcepub fn pipeline_execution_arn(self, input: impl Into<String>) -> Self
pub fn pipeline_execution_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline execution.
sourcepub fn set_pipeline_execution_arn(self, input: Option<String>) -> Self
pub fn set_pipeline_execution_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the pipeline execution.
sourcepub fn get_pipeline_execution_arn(&self) -> &Option<String>
pub fn get_pipeline_execution_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the pipeline execution.
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 max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of pipeline execution steps to return in the response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of pipeline execution steps to return in the response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of pipeline execution steps to return in the response.
sourcepub fn sort_order(self, input: SortOrder) -> Self
pub fn sort_order(self, input: SortOrder) -> Self
The field by which to sort results. The default is CreatedTime
.
sourcepub fn set_sort_order(self, input: Option<SortOrder>) -> Self
pub fn set_sort_order(self, input: Option<SortOrder>) -> Self
The field by which to sort results. The default is CreatedTime
.
sourcepub fn get_sort_order(&self) -> &Option<SortOrder>
pub fn get_sort_order(&self) -> &Option<SortOrder>
The field by which to sort results. The default is CreatedTime
.
sourcepub fn build(self) -> Result<ListPipelineExecutionStepsInput, BuildError>
pub fn build(self) -> Result<ListPipelineExecutionStepsInput, BuildError>
Consumes the builder and constructs a ListPipelineExecutionStepsInput
.
source§impl ListPipelineExecutionStepsInputBuilder
impl ListPipelineExecutionStepsInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<ListPipelineExecutionStepsOutput, SdkError<ListPipelineExecutionStepsError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<ListPipelineExecutionStepsOutput, SdkError<ListPipelineExecutionStepsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListPipelineExecutionStepsInputBuilder
impl Clone for ListPipelineExecutionStepsInputBuilder
source§fn clone(&self) -> ListPipelineExecutionStepsInputBuilder
fn clone(&self) -> ListPipelineExecutionStepsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListPipelineExecutionStepsInputBuilder
impl Default for ListPipelineExecutionStepsInputBuilder
source§fn default() -> ListPipelineExecutionStepsInputBuilder
fn default() -> ListPipelineExecutionStepsInputBuilder
source§impl PartialEq for ListPipelineExecutionStepsInputBuilder
impl PartialEq for ListPipelineExecutionStepsInputBuilder
source§fn eq(&self, other: &ListPipelineExecutionStepsInputBuilder) -> bool
fn eq(&self, other: &ListPipelineExecutionStepsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListPipelineExecutionStepsInputBuilder
Auto Trait Implementations§
impl Freeze for ListPipelineExecutionStepsInputBuilder
impl RefUnwindSafe for ListPipelineExecutionStepsInputBuilder
impl Send for ListPipelineExecutionStepsInputBuilder
impl Sync for ListPipelineExecutionStepsInputBuilder
impl Unpin for ListPipelineExecutionStepsInputBuilder
impl UnwindSafe for ListPipelineExecutionStepsInputBuilder
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