Skip to main content

events

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

Overview

Nameevents
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
put_eventsreplaceapplication-id, region, EventsRequestCreates 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.

NameDatatypeDescription
application-idstringThe unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.
regionstringAWS region (default: us-east-1)

REPLACE examples

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;