events
Creates, updates, deletes, gets or lists an events resource.
Overview
| Name | events |
| Type | Resource |
| Id | aws.pinpoint.events |
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_events | replace | application-id, region, EventsRequest | Creates a new event to record for endpoints, or creates or updates endpoint data that existing events are associated with. |
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 |
|---|---|---|
application-id | string | The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console. |
region | string | AWS region (default: us-east-1) |
REPLACE examples
- put_events
Creates a new event to record for endpoints, or creates or updates endpoint data that existing events are associated with.
REPLACE aws.pinpoint.events
SET
EventsRequest = '{{ EventsRequest }}'
WHERE
`application-id` = '{{ application-id }}' --required
AND region = '{{ region }}' --required
AND EventsRequest = '{{ EventsRequest }}' --required
RETURNING
events_response;