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

ActionExecution

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

Represents information about the run of an action.

interface ActionExecution {
actionExecutionId?: string | null;
errorDetails?: ErrorDetails | null;
externalExecutionId?: string | null;
externalExecutionUrl?: string | null;
lastStatusChange?: Date | number | null;
lastUpdatedBy?: string | null;
percentComplete?: number | null;
status?: ActionExecutionStatus | null;
summary?: string | null;
token?: string | null;
}

§Properties

§
actionExecutionId?: string | null
[src]

ID of the workflow action execution in the current stage. Use the "GetPipelineState" action to retrieve the current action execution details of the current stage.

Note: For older executions, this field might be empty. The action execution ID is available for executions run on or after March 2020.

§
errorDetails?: ErrorDetails | null
[src]

The details of an error returned by a URL external to AWS.

§
externalExecutionId?: string | null
[src]

The external ID of the run of the action.

§
externalExecutionUrl?: string | null
[src]

The URL of a resource external to AWS that is used when running the action (for example, an external repository URL).

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

The last status change of the action.

§
lastUpdatedBy?: string | null
[src]

The ARN of the user who last changed the pipeline.

§
percentComplete?: number | null
[src]

A percentage of completeness of the action as it runs.

§

The status of the action, or for a completed action, the last status of the action.

§
summary?: string | null
[src]

A summary of the run of the action.

§
token?: string | null
[src]

The system-generated token used to identify a unique approval request. The token for each open approval request can be obtained using the GetPipelineState command. It is used to validate that the approval request corresponding to this token is still valid.