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

ActionInvocation

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

An extension that was invoked as part of a deployment event.

interface ActionInvocation {
ActionName?: string | null;
ErrorCode?: string | null;
ErrorMessage?: string | null;
ExtensionIdentifier?: string | null;
InvocationId?: string | null;
RoleArn?: string | null;
Uri?: string | null;
}

§Properties

§
ActionName?: string | null
[src]

The name of the action.

§
ErrorCode?: string | null
[src]

The error code when an extension invocation fails.

§
ErrorMessage?: string | null
[src]

The error message when an extension invocation fails.

§
ExtensionIdentifier?: string | null
[src]

The name, the ID, or the Amazon Resource Name (ARN) of the extension.

§
InvocationId?: string | null
[src]

A system-generated ID for this invocation.

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