pub struct Builder { /* private fields */ }
Expand description
A builder for ListActionExecutionsInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name of the pipeline for which you want to list action execution history.
sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name of the pipeline for which you want to list action execution history.
sourcepub fn filter(self, input: ActionExecutionFilter) -> Self
pub fn filter(self, input: ActionExecutionFilter) -> Self
Input information used to filter action execution history.
sourcepub fn set_filter(self, input: Option<ActionExecutionFilter>) -> Self
pub fn set_filter(self, input: Option<ActionExecutionFilter>) -> Self
Input information used to filter action execution history.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.
Detailed execution history is available for executions run on or after February 21, 2019.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.
Detailed execution history is available for executions run on or after February 21, 2019.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The token that was returned from the previous ListActionExecutions
call, which can be used to return the next set of action executions in the list.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The token that was returned from the previous ListActionExecutions
call, which can be used to return the next set of action executions in the list.
sourcepub fn build(self) -> Result<ListActionExecutionsInput, BuildError>
pub fn build(self) -> Result<ListActionExecutionsInput, BuildError>
Consumes the builder and constructs a ListActionExecutionsInput
.