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

ActionExecutionDetail

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

Returns information about an execution of an action, including the action execution ID, and the name, version, and timing of the action.

interface ActionExecutionDetail {
actionExecutionId?: string | null;
actionName?: string | null;
input?: ActionExecutionInput | null;
lastUpdateTime?: Date | number | null;
output?: ActionExecutionOutput | null;
pipelineExecutionId?: string | null;
pipelineVersion?: number | null;
stageName?: string | null;
startTime?: Date | number | null;
status?: ActionExecutionStatus | null;
}

§Properties

§
actionExecutionId?: string | null
[src]

The action execution ID.

§
actionName?: string | null
[src]

The name of the action.

§

Input details for the action execution, such as role ARN, Region, and input artifacts.

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

The last update time of the action execution.

§

Output details for the action execution, such as the action execution result.

§
pipelineExecutionId?: string | null
[src]

The pipeline execution ID for the action execution.

§
pipelineVersion?: number | null
[src]

The version of the pipeline where the action was run.

§
stageName?: string | null
[src]

The name of the stage that contains the action.

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

The start time of the action execution.

§

The status of the action execution. Status categories are InProgress, Succeeded, and Failed.