pub struct Builder { /* private fields */ }
Expand description
A builder for ListPipelineExecutionStepsInput
.
Implementations§
source§impl Builder
impl Builder
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 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 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 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 build(self) -> Result<ListPipelineExecutionStepsInput, BuildError>
pub fn build(self) -> Result<ListPipelineExecutionStepsInput, BuildError>
Consumes the builder and constructs a ListPipelineExecutionStepsInput
.