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

StageState

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

Represents information about the state of the stage.

interface StageState {
actionStates?: ActionState[] | null;
inboundExecution?: StageExecution | null;
inboundTransitionState?: TransitionState | null;
latestExecution?: StageExecution | null;
stageName?: string | null;
}

§Properties

§
actionStates?: ActionState[] | null
[src]

The state of the stage.

§
inboundExecution?: StageExecution | null
[src]
§
inboundTransitionState?: TransitionState | null
[src]

The state of the inbound transition, which is either enabled or disabled.

§
latestExecution?: StageExecution | null
[src]

Information about the latest execution in the stage, including its ID and status.

§
stageName?: string | null
[src]

The name of the stage.