Struct rusoto_codepipeline::RetryStageExecutionInput[][src]

pub struct RetryStageExecutionInput {
    pub pipeline_execution_id: String,
    pub pipeline_name: String,
    pub retry_mode: String,
    pub stage_name: String,
}

Represents the input of a RetryStageExecution action.

Fields

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 name of the pipeline that contains the failed stage.

The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.

The name of the failed stage to be retried.

Trait Implementations

impl Default for RetryStageExecutionInput
[src]

Returns the "default value" for a type. Read more

impl Debug for RetryStageExecutionInput
[src]

Formats the value using the given formatter. Read more

impl Clone for RetryStageExecutionInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RetryStageExecutionInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations