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

ActionDeclaration

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

Represents information about an action declaration.

interface ActionDeclaration {
actionTypeId: ActionTypeId;
configuration?: {
[key: string]: string | null | undefined;
}
| null;
inputArtifacts?: InputArtifact[] | null;
name: string;
namespace?: string | null;
outputArtifacts?: OutputArtifact[] | null;
region?: string | null;
roleArn?: string | null;
runOrder?: number | null;
}

§Properties

§
actionTypeId: ActionTypeId
[src]

Specifies the action type and the provider of the action.

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

The action's configuration. These are key-value pairs that specify input values for an action. For more information, see Action Structure Requirements in CodePipeline. For the list of configuration properties for the AWS CloudFormation action type in CodePipeline, see Configuration Properties Reference in the AWS CloudFormation User Guide. For template snippets with examples, see Using Parameter Override Functions with CodePipeline Pipelines in the AWS CloudFormation User Guide.

The values can be represented in either JSON or YAML format. For example, the JSON configuration item format is as follows:

JSON:

"Configuration" : { Key : Value },
§
inputArtifacts?: InputArtifact[] | null
[src]

The name or ID of the artifact consumed by the action, such as a test or build artifact.

§
name: string
[src]

The action declaration's name.

§
namespace?: string | null
[src]

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

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

The name or ID of the result of the action declaration, such as a test or build artifact.

§
region?: string | null
[src]

The action declaration's AWS Region, such as us-east-1.

§
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.

§
runOrder?: number | null
[src]

The order in which actions are run.