Resumes the pipeline execution by retrying the last failed actions in a stage. You
can retry a stage immediately if any of the actions in the stage fail. When you retry,
all actions that are still in progress continue working, and failed actions are
triggered again.
example
Use a bare-bones client and the command you need to make an API call.
Resumes the pipeline execution by retrying the last failed actions in a stage. You can retry a stage immediately if any of the actions in the stage fail. When you retry, all actions that are still in progress continue working, and failed actions are triggered again.
Use a bare-bones client and the command you need to make an API call.
import { CodePipelineClient, RetryStageExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import // const { CodePipelineClient, RetryStageExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import const client = new CodePipelineClient(config); const command = new RetryStageExecutionCommand(input); const response = await client.send(command);
RetryStageExecutionCommandInput for command's
input
shape.RetryStageExecutionCommandOutput for command's
response
shape.config for CodePipelineClient's
config
shape.