Skip to main content

action_interactions

Creates, updates, deletes, gets or lists an action_interactions resource.

Overview

Nameaction_interactions
TypeResource
Idaws.personalize_events.action_interactions

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
put_action_interactionsreplaceregion, trackingId, actionInteractionsRecords 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

REPLACE examples

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.

REPLACE aws.personalize_events.action_interactions
SET
trackingId = '{{ trackingId }}',
actionInteractions = '{{ actionInteractions }}'
WHERE
region = '{{ region }}' --required
AND trackingId = '{{ trackingId }}' --required
AND actionInteractions = '{{ actionInteractions }}' --required;