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

ActionState

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

Represents information about the state of an action.

interface ActionState {
actionName?: string | null;
currentRevision?: ActionRevision | null;
entityUrl?: string | null;
latestExecution?: ActionExecution | null;
revisionUrl?: string | null;
}

§Properties

§
actionName?: string | null
[src]

The name of the action.

§
currentRevision?: ActionRevision | null
[src]

Represents information about the version (or revision) of an action.

§
entityUrl?: string | null
[src]

A URL link for more information about the state of the action, such as a deployment group details page.

§
latestExecution?: ActionExecution | null
[src]

Represents information about the run of an action.

§
revisionUrl?: string | null
[src]

A URL link for more information about the revision, such as a commit details page.