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-bqtgftz736ft.deno.dev/v0.5/services/personalizeevents.ts?docs=full";
class PersonalizeEvents {
constructor(apiFactory: client.ApiFactory);
async putActionInteractions(params: PutActionInteractionsRequest, opts?: client.RequestOptions): Promise<void>;
async putActions(params: PutActionsRequest, opts?: client.RequestOptions): Promise<void>;
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

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

Records action interaction event data. An action interaction event is an interaction between a user and an action. For example, a user taking an action, such a enrolling in a membership program or downloading your app.

For more information about recording action interactions, see Recording action interaction events. For more information about actions in an Actions dataset, see Actions dataset.

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

Adds one or more actions to an Actions dataset. For more information see Importing actions individually.

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

Records item interaction event data. For more information see Recording item interaction 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 individually.

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

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

§Static Properties