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

DisableStageTransitionInput

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

Represents the input of a DisableStageTransition action.

interface DisableStageTransitionInput {
pipelineName: string;
reason: string;
stageName: string;
transitionType: StageTransitionType;
}

§Properties

§
pipelineName: string
[src]

The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.

§
reason: string
[src]

The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.

§
stageName: string
[src]

The name of the stage where you want to disable the inbound or outbound transition of artifacts.

§
transitionType: StageTransitionType
[src]

Specifies whether artifacts are prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).