Skip to main content

stage_sessions

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

Overview

Namestage_sessions
TypeResource
Idaws.ivs_realtime.stage_sessions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.
session_idstringID of the session within the stage. (pattern: <code>st-[a-zA-Z0-9]+</code>)
start_timestring (date-time)ISO 8601 timestamp (returned as a string) when this stage session began.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_stage_sessionselectregionGets information for the specified stage session.
list_stage_sessionsselectregionGets all sessions for a specified 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

Gets information for the specified stage session.

SELECT
end_time,
session_id,
start_time
FROM aws.ivs_realtime.stage_sessions
WHERE region = '{{ region }}' -- required
;