#[non_exhaustive]pub struct ListActionExecutionsInput {
pub pipeline_name: Option<String>,
pub filter: Option<ActionExecutionFilter>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.pipeline_name: Option<String>
The name of the pipeline for which you want to list action execution history.
filter: Option<ActionExecutionFilter>
Input information used to filter action execution history.
max_results: Option<i32>
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.
next_token: Option<String>
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListActionExecutions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListActionExecutions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListActionExecutions
>
Creates a new builder-style object to manufacture ListActionExecutionsInput
The name of the pipeline for which you want to list action execution history.
Input information used to filter action execution history.
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.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ListActionExecutionsInput
impl Send for ListActionExecutionsInput
impl Sync for ListActionExecutionsInput
impl Unpin for ListActionExecutionsInput
impl UnwindSafe for ListActionExecutionsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more