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

TransitionState

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

Represents information about the state of transitions between one stage and another stage.

interface TransitionState {
disabledReason?: string | null;
enabled?: boolean | null;
lastChangedAt?: Date | number | null;
lastChangedBy?: string | null;
}

§Properties

§
disabledReason?: string | null
[src]

The user-specified reason why the transition between two stages of a pipeline was disabled.

§
enabled?: boolean | null
[src]

Whether the transition between stages is enabled (true) or disabled (false).

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

The timestamp when the transition state was last changed.

§
lastChangedBy?: string | null
[src]

The ID of the user who last changed the transition state.