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

PutEventsRequest

import type { PutEventsRequest } from "https://aws-api.deno.dev/v0.4/services/personalizeevents.ts?docs=full";
interface PutEventsRequest {
eventList: Event[];
sessionId: string;
trackingId: string;
userId?: string | null;
}

§Properties

§
eventList: Event[]
[src]

A list of event data from the session.

§
sessionId: string
[src]

The session ID associated with the user's visit. Your application generates the sessionId when a user first visits your website or uses your application. Amazon Personalize uses the sessionId to associate events with the user before they log in. For more information, see Recording Events.

§
trackingId: string
[src]

The tracking ID for the event. The ID is generated by a call to the CreateEventTracker API.

§
userId?: string | null
[src]

The user associated with the event.