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

EventActionEntry

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

An event action is an object that defines the relationship between a specific event and an automated action that will be taken on behalf of the customer.

interface EventActionEntry {
Action: Action;
Arn: string;
CreatedAt: Date | number;
Event: Event;
Id: string;
UpdatedAt: Date | number;
}

§Properties

§
Action: Action
[src]

What occurs after a certain event.

§
Arn: string
[src]

The Amazon Resource Name (ARN) for the event action.

§
CreatedAt: Date | number
[src]

The date and time that the event action was created, in ISO 8601 format.

§
Event: Event
[src]

What occurs to start an action.

§
Id: string
[src]

The unique identifier for the event action.

§
UpdatedAt: Date | number
[src]

The date and time that the event action was last updated, in ISO 8601 format.