Class: Aws::IVSRealTime::Types::StageSession
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVSRealTime::Types::StageSession
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivsrealtime/types.rb
Overview
A stage session begins when the first participant joins a stage and ends after the last participant leaves the stage. A stage session helps with debugging stages by grouping events and participants into shorter periods of time (i.e., a session), which is helpful when stages are used over long periods of time.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_time ⇒ Time
ISO 8601 timestamp (returned as a string) when the stage session ended.
-
#session_id ⇒ String
ID of the session within the stage.
-
#start_time ⇒ Time
ISO 8601 timestamp (returned as a string) when this stage session began.
Instance Attribute Details
#end_time ⇒ Time
ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.
2899 2900 2901 2902 2903 2904 2905 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2899 class StageSession < Struct.new( :session_id, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#session_id ⇒ String
ID of the session within the stage.
2899 2900 2901 2902 2903 2904 2905 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2899 class StageSession < Struct.new( :session_id, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |
#start_time ⇒ Time
ISO 8601 timestamp (returned as a string) when this stage session began.
2899 2900 2901 2902 2903 2904 2905 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2899 class StageSession < Struct.new( :session_id, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end |