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

Event

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

Contains information about an event that was returned by a lookup request. The result includes a representation of a CloudTrail event.

interface Event {
AccessKeyId?: string | null;
CloudTrailEvent?: string | null;
EventId?: string | null;
EventName?: string | null;
EventSource?: string | null;
EventTime?: Date | number | null;
ReadOnly?: string | null;
Resources?: Resource[] | null;
Username?: string | null;
}

§Properties

§
AccessKeyId?: string | null
[src]

The Amazon Web Services access key ID that was used to sign the request. If the request was made with temporary security credentials, this is the access key ID of the temporary credentials.

§
CloudTrailEvent?: string | null
[src]

A JSON string that contains a representation of the event returned.

§
EventId?: string | null
[src]

The CloudTrail ID of the event returned.

§
EventName?: string | null
[src]

The name of the event returned.

§
EventSource?: string | null
[src]

The Amazon Web Services service to which the request was made.

§
EventTime?: Date | number | null
[src]

The date and time of the event returned.

§
ReadOnly?: string | null
[src]

Information about whether the event is a write event or a read event.

§
Resources?: Resource[] | null
[src]

A list of resources referenced by the event returned.

§
Username?: string | null
[src]

A user name or role name of the requester that called the API in the event returned.