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

GetPipelineStateOutput

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

Represents the output of a GetPipelineState action.

interface GetPipelineStateOutput {
created?: Date | number | null;
pipelineName?: string | null;
pipelineVersion?: number | null;
stageStates?: StageState[] | null;
updated?: Date | number | null;
}

§Properties

§
created?: Date | number | null
[src]

The date and time the pipeline was created, in timestamp format.

§
pipelineName?: string | null
[src]

The name of the pipeline for which you want to get the state.

§
pipelineVersion?: number | null
[src]

The version number of the pipeline.

Note: A newly created pipeline is always assigned a version number of 1.

§
stageStates?: StageState[] | null
[src]

A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.

§
updated?: Date | number | null
[src]

The date and time the pipeline was last updated, in timestamp format.