Skip to main content

participant_events

Creates, updates, deletes, gets or lists a participant_events resource.

Overview

Nameparticipant_events
TypeResource
Idaws.ivs_realtime.participant_events

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
eventsarrayList of the matching events.
next_tokenstringIf there are more events than maxResults, use nextToken in the request to get the next set. (pattern: <code>[a-zA-Z0-9+/=_-]*</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_participant_eventsselectregionLists events for a specified participant that occurred during a specified stage session.

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)

SELECT examples

Lists events for a specified participant that occurred during a specified stage session.

SELECT
events,
next_token
FROM aws.ivs_realtime.participant_events
WHERE region = '{{ region }}' -- required
;