You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::CodePipeline::Types::RetryStageExecutionInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RetryStageExecutionInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  pipeline_name: "PipelineName", # required
  stage_name: "StageName", # required
  pipeline_execution_id: "PipelineExecutionId", # required
  retry_mode: "FAILED_ACTIONS", # required, accepts FAILED_ACTIONS
}

Represents the input of a RetryStageExecution action.

Instance Attribute Summary collapse

Instance Attribute Details

#pipeline_execution_idString

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

Returns:

  • (String)

    The ID of the pipeline execution in the failed stage to be retried.

#pipeline_nameString

The name of the pipeline that contains the failed stage.

Returns:

  • (String)

    The name of the pipeline that contains the failed stage.

#retry_modeString

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

Possible values:

  • FAILED_ACTIONS

Returns:

  • (String)

    The scope of the retry attempt.

#stage_nameString

The name of the failed stage to be retried.

Returns:

  • (String)

    The name of the failed stage to be retried.