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

EnableStageTransitionInput

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

Represents the input of an EnableStageTransition action.

interface EnableStageTransitionInput {
pipelineName: string;
stageName: string;
transitionType: StageTransitionType;
}

§Properties

§
pipelineName: string
[src]

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

§
stageName: string
[src]

The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).

§
transitionType: StageTransitionType
[src]

Specifies whether artifacts are allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already processed artifacts are allowed to transition to the next stage (outbound).