retry_stage
Retry a failed stage in AWS CodePipeline by specifying the pipeline name, stage name, and execution ID. Simplifies pipeline management and reduces manual intervention.
Instructions
Retry a failed stage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pipelineExecutionId | Yes | Execution ID | |
pipelineName | Yes | Name of the pipeline | |
stageName | Yes | Name of the stage |
Input Schema (JSON Schema)
{
"properties": {
"pipelineExecutionId": {
"description": "Execution ID",
"type": "string"
},
"pipelineName": {
"description": "Name of the pipeline",
"type": "string"
},
"stageName": {
"description": "Name of the stage",
"type": "string"
}
},
"required": [
"pipelineName",
"stageName",
"pipelineExecutionId"
],
"type": "object"
}