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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codepipeline/types.rb

Overview

Note:

When making an API call, you may pass RetryStageExecutionInput data as a 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)


2760
2761
2762
2763
2764
2765
2766
# File 'lib/aws-sdk-codepipeline/types.rb', line 2760

class RetryStageExecutionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :pipeline_execution_id,
  :retry_mode)
  include Aws::Structure
end

#pipeline_nameString

The name of the pipeline that contains the failed stage.

Returns:

  • (String)


2760
2761
2762
2763
2764
2765
2766
# File 'lib/aws-sdk-codepipeline/types.rb', line 2760

class RetryStageExecutionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :pipeline_execution_id,
  :retry_mode)
  include Aws::Structure
end

#retry_modeString

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

Returns:

  • (String)


2760
2761
2762
2763
2764
2765
2766
# File 'lib/aws-sdk-codepipeline/types.rb', line 2760

class RetryStageExecutionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :pipeline_execution_id,
  :retry_mode)
  include Aws::Structure
end

#stage_nameString

The name of the failed stage to be retried.

Returns:

  • (String)


2760
2761
2762
2763
2764
2765
2766
# File 'lib/aws-sdk-codepipeline/types.rb', line 2760

class RetryStageExecutionInput < Struct.new(
  :pipeline_name,
  :stage_name,
  :pipeline_execution_id,
  :retry_mode)
  include Aws::Structure
end