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

PersonalizeEvents

import { PersonalizeEvents } from "https://aws-api.deno.dev/v0.4/services/personalizeevents.ts?docs=full";
class PersonalizeEvents {
constructor(apiFactory: client.ApiFactory);
async putEvents(params: PutEventsRequest, opts?: client.RequestOptions): Promise<void>;
async putItems(params: PutItemsRequest, opts?: client.RequestOptions): Promise<void>;
async putUsers(params: PutUsersRequest, opts?: client.RequestOptions): Promise<void>;
 
static ApiMetadata: client.ApiMetadata;
}

§Constructors

§
new PersonalizeEvents(apiFactory: client.ApiFactory)
[src]

§Methods

§
putEvents(params: PutEventsRequest, opts?: client.RequestOptions): Promise<void>
[src]

Records user interaction event data. For more information see Recording Events.

§
putItems(params: PutItemsRequest, opts?: client.RequestOptions): Promise<void>
[src]

Adds one or more items to an Items dataset. For more information see Importing Items Incrementally.

§
putUsers(params: PutUsersRequest, opts?: client.RequestOptions): Promise<void>
[src]

Adds one or more users to a Users dataset. For more information see Importing Users Incrementally.

§Static Properties