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
- Struct
- Aws::CodePipeline::Types::RetryStageExecutionInput
- Defined in:
- (unknown)
Overview
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
-
#pipeline_execution_id ⇒ String
The ID of the pipeline execution in the failed stage to be retried.
-
#pipeline_name ⇒ String
The name of the pipeline that contains the failed stage.
-
#retry_mode ⇒ String
The scope of the retry attempt.
-
#stage_name ⇒ String
The name of the failed stage to be retried.
Instance Attribute Details
#pipeline_execution_id ⇒ 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
#pipeline_name ⇒ String
The name of the pipeline that contains the failed stage.
#retry_mode ⇒ String
The scope of the retry attempt. Currently, the only supported value is FAILED_ACTIONS.
Possible values:
- FAILED_ACTIONS
#stage_name ⇒ String
The name of the failed stage to be retried.