Class: Aws::IVSRealTime::Types::StageSession

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ivsrealtime/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

Instance Attribute Details

#end_timeTime

ISO 8601 timestamp (returned as a string) when the stage session ended. This is null if the stage is active.

Returns:

  • (Time)


1716
1717
1718
1719
1720
1721
1722
# File 'gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb', line 1716

class StageSession < Struct.new(
  :end_time,
  :session_id,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end

#session_idString

ID of the session within the stage.

Returns:

  • (String)


1716
1717
1718
1719
1720
1721
1722
# File 'gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb', line 1716

class StageSession < Struct.new(
  :end_time,
  :session_id,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end

#start_timeTime

ISO 8601 timestamp (returned as a string) when this stage session began.

Returns:

  • (Time)


1716
1717
1718
1719
1720
1721
1722
# File 'gems/aws-sdk-ivsrealtime/lib/aws-sdk-ivsrealtime/types.rb', line 1716

class StageSession < Struct.new(
  :end_time,
  :session_id,
  :start_time)
  SENSITIVE = []
  include Aws::Structure
end