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.4/services/pinpoint.ts?docs=full";

Specifies information about an event that reports data to Amazon Pinpoint.

interface Event {
AppPackageName?: string | null;
AppTitle?: string | null;
AppVersionCode?: string | null;
Attributes?: {
[key: string]: string | null | undefined;
}
| null;
ClientSdkVersion?: string | null;
EventType: string;
Metrics?: {
[key: string]: number | null | undefined;
}
| null;
SdkName?: string | null;
Session?: Session | null;
Timestamp: string;
}

§Properties

§
AppPackageName?: string | null
[src]

The package name of the app that's recording the event.

§
AppTitle?: string | null
[src]

The title of the app that's recording the event.

§
AppVersionCode?: string | null
[src]

The version number of the app that's recording the event.

§
Attributes?: {
[key: string]: string | null | undefined;
}
| null
[src]

One or more custom attributes that are associated with the event.

§
ClientSdkVersion?: string | null
[src]

The version of the SDK that's running on the client device.

§
EventType: string
[src]

The name of the event.

§
Metrics?: {
[key: string]: number | null | undefined;
}
| null
[src]

One or more custom metrics that are associated with the event.

§
SdkName?: string | null
[src]

The name of the SDK that's being used to record the event.

§
Session?: Session | null
[src]

Information about the session in which the event occurred.

§
Timestamp: string
[src]

The date and time, in ISO 8601 format, when the event occurred.