#[non_exhaustive]pub struct RetryStageExecutionInput {
pub pipeline_name: Option<String>,
pub stage_name: Option<String>,
pub pipeline_execution_id: Option<String>,
pub retry_mode: Option<StageRetryMode>,
}
Expand description
Represents the input of a RetryStageExecution
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 that contains the failed stage.
stage_name: Option<String>
The name of the failed stage to be retried.
pipeline_execution_id: Option<String>
The ID of the pipeline execution in the failed stage to be retried. Use the GetPipelineState
action to retrieve the current pipelineExecutionId of the failed stage
retry_mode: Option<StageRetryMode>
The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RetryStageExecution, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<RetryStageExecution, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<RetryStageExecution
>
Creates a new builder-style object to manufacture RetryStageExecutionInput
The name of the pipeline that contains the failed stage.
The name of the failed stage to be retried.
The ID of the pipeline execution in the failed stage to be retried. Use the GetPipelineState
action to retrieve the current pipelineExecutionId of the failed stage
The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.
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 RetryStageExecutionInput
impl Send for RetryStageExecutionInput
impl Sync for RetryStageExecutionInput
impl Unpin for RetryStageExecutionInput
impl UnwindSafe for RetryStageExecutionInput
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