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

StageDeclaration

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

Represents information about a stage and its definition.

interface StageDeclaration {
actions: ActionDeclaration[];
blockers?: BlockerDeclaration[] | null;
name: string;
}

§Properties

§

The actions included in a stage.

§
blockers?: BlockerDeclaration[] | null
[src]

Reserved for future use.

§
name: string
[src]

The name of the stage.