Struct aws_sdk_codepipeline::input::ListPipelineExecutionsInput [−][src]
#[non_exhaustive]pub struct ListPipelineExecutionsInput {
pub pipeline_name: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Expand description
Represents the input of a ListPipelineExecutions
action.
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 get execution summary information.
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. Pipeline history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.
next_token: Option<String>
The token that was returned from the previous ListPipelineExecutions
call, which can be used to return the next set of pipeline executions in the
list.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPipelineExecutions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListPipelineExecutions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListPipelineExecutions
>
Creates a new builder-style object to manufacture ListPipelineExecutionsInput
The name of the pipeline for which you want to get execution summary information.
The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Pipeline history is limited to the most recent 12 months, based on pipeline execution start times. Default value is 100.
The token that was returned from the previous ListPipelineExecutions
call, which can be used to return the next set of pipeline 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 ListPipelineExecutionsInput
impl Send for ListPipelineExecutionsInput
impl Sync for ListPipelineExecutionsInput
impl Unpin for ListPipelineExecutionsInput
impl UnwindSafe for ListPipelineExecutionsInput
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