Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RetryStageExecutionInput

import type { RetryStageExecutionInput } from "https://aws-api.deno.dev/v0.3/services/codepipeline.ts?docs=full";

Represents the input of a RetryStageExecution action.

interface RetryStageExecutionInput {
pipelineExecutionId: string;
pipelineName: string;
retryMode: StageRetryMode;
stageName: string;
}

§Properties

§
pipelineExecutionId: string
[src]

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

§
pipelineName: string
[src]

The name of the pipeline that contains the failed stage.

§

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

§
stageName: string
[src]

The name of the failed stage to be retried.