Skip to main content

participant_replicas

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

Overview

Nameparticipant_replicas
TypeResource
Idaws.ivs_realtime.participant_replicas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
destination_session_idstringID of the session within the destination stage. (pattern: <code>st-[a-zA-Z0-9]+</code>)
destination_stage_arnstringARN of the stage where the participant is replicated. (pattern: <code>arn:aws:ivs:[a-z0-9-]+:[0-9]+:stage/[a-zA-Z0-9-]+</code>)
participant_idstringParticipant ID of the publisher that will be replicated. This is assigned by IVS and returned by CreateParticipantToken or the jti (JWT ID) used to create a self signed token. (pattern: <code>[a-zA-Z0-9-]*</code>)
replication_statestringReplica’s current replication state. (ACTIVE, STOPPED)
source_session_idstringID of the session within the source stage. (pattern: <code>st-[a-zA-Z0-9]+</code>)
source_stage_arnstringARN of the stage from which this participant is replicated. (pattern: <code>arn:aws:ivs:[a-z0-9-]+:[0-9]+:stage/[a-zA-Z0-9-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_participant_replicasselectregionLists all the replicas for a participant from a source stage.

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 all the replicas for a participant from a source stage.

SELECT
destination_session_id,
destination_stage_arn,
participant_id,
replication_state,
source_session_id,
source_stage_arn
FROM aws.ivs_realtime.participant_replicas
WHERE region = '{{ region }}' -- required
;