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

Action

import type { Action } from "https://aws-api.deno.dev/v0.4/services/appconfig.ts?docs=full";

An action defines the tasks that the extension performs during the AppConfig workflow. Each action includes an action point such as ON_CREATE_HOSTED_CONFIGURATION, PRE_DEPLOYMENT, or ON_DEPLOYMENT. Each action also includes a name, a URI to an Lambda function, and an Amazon Resource Name (ARN) for an Identity and Access Management assume role. You specify the name, URI, and ARN for each action point defined in the extension. You can specify the following actions for an extension:

  • PRE_CREATE_HOSTED_CONFIGURATION_VERSION
    
  • PRE_START_DEPLOYMENT
    
  • ON_DEPLOYMENT_START
    
  • ON_DEPLOYMENT_STEP
    
  • ON_DEPLOYMENT_BAKING
    
  • ON_DEPLOYMENT_COMPLETE
    
  • ON_DEPLOYMENT_ROLLED_BACK
    
interface Action {
Description?: string | null;
Name?: string | null;
RoleArn?: string | null;
Uri?: string | null;
}

§Properties

§
Description?: string | null
[src]

Information about the action.

§
Name?: string | null
[src]

The action name.

§
RoleArn?: string | null
[src]

An Amazon Resource Name (ARN) for an Identity and Access Management assume role.

§
Uri?: string | null
[src]

The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.