action_interactions
Creates, updates, deletes, gets or lists an action_interactions resource.
Overview
| Name | action_interactions |
| Type | Resource |
| Id | aws.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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
put_action_interactions | replace | region, trackingId, actionInteractions | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
REPLACE examples
- put_action_interactions
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;