actions
Creates, updates, deletes, gets or lists an actions resource.
Overview
| Name | actions |
| Type | Resource |
| Id | aws.personalize_events.actions |
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_actions | replace | region, datasetArn, actions | Adds one or more actions to an Actions dataset. For more information see Importing actions individually. |
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_actions
Adds one or more actions to an Actions dataset. For more information see Importing actions individually.
REPLACE aws.personalize_events.actions
SET
datasetArn = '{{ datasetArn }}',
actions = '{{ actions }}'
WHERE
region = '{{ region }}' --required
AND datasetArn = '{{ datasetArn }}' --required
AND actions = '{{ actions }}' --required;