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

ActionExecutionInput

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

Input information used for an action execution.

interface ActionExecutionInput {
actionTypeId?: ActionTypeId | null;
configuration?: {
[key: string]: string | null | undefined;
}
| null;
inputArtifacts?: ArtifactDetail[] | null;
namespace?: string | null;
region?: string | null;
resolvedConfiguration?: {
[key: string]: string | null | undefined;
}
| null;
roleArn?: string | null;
}

§Properties

§
actionTypeId?: ActionTypeId | null
[src]
§
configuration?: {
[key: string]: string | null | undefined;
}
| null
[src]

Configuration data for an action execution.

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

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

§
namespace?: string | null
[src]

The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.

§
region?: string | null
[src]

The AWS Region for the action, such as us-east-1.

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

Configuration data for an action execution with all variable references replaced with their real values for the execution.

§
roleArn?: string | null
[src]

The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.