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

AuditEvent

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

An event from a source outside of Amazon Web Services that you want CloudTrail to log.

interface AuditEvent {
eventData: string;
eventDataChecksum?: string | null;
id: string;
}

§Properties

§
eventData: string
[src]

The content of an audit event that comes from the event, such as userIdentity, userAgent, and eventSource.

§
eventDataChecksum?: string | null
[src]

A checksum is a base64-SHA256 algorithm that helps you verify that CloudTrail receives the event that matches with the checksum. Calculate the checksum by running a command like the following:

printf %s _$eventdata_ | openssl dgst -binary -sha256 | base64
§
id: string
[src]

The original event ID from the source event.