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

ActionExecutionOutput

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

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

interface ActionExecutionOutput {
executionResult?: ActionExecutionResult | null;
outputArtifacts?: ArtifactDetail[] | null;
outputVariables?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
executionResult?: ActionExecutionResult | null
[src]

Execution result information listed in the output details for an action execution.

§
outputArtifacts?: ArtifactDetail[] | null
[src]

Details of output artifacts of the action that correspond to the action execution.

§
outputVariables?: {
[key: string]: string | null | undefined;
}
| null
[src]

The outputVariables field shows the key-value pairs that were output as part of that execution.