Class: Aws::IVSRealTime::Types::ParticipantTokenConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVSRealTime::Types::ParticipantTokenConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivsrealtime/types.rb
Overview
Object specifying a participant token configuration in a stage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,String>
Application-provided attributes to encode into the corresponding participant token and attach to a stage.
-
#capabilities ⇒ Array<String>
Set of capabilities that the user is allowed to perform in the stage.
-
#duration ⇒ Integer
Duration (in minutes), after which the corresponding participant token expires.
-
#user_id ⇒ String
Customer-assigned name to help identify the token; this can be used to link a participant to a user in the customer’s own systems.
Instance Attribute Details
#attributes ⇒ Hash<String,String>
Application-provided attributes to encode into the corresponding participant token and attach to a stage. Map keys and values can contain UTF-8 encoded text. The maximum length of this field is 1 KB total. *This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.*
2005 2006 2007 2008 2009 2010 2011 2012 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2005 class ParticipantTokenConfiguration < Struct.new( :duration, :user_id, :attributes, :capabilities) SENSITIVE = [] include Aws::Structure end |
#capabilities ⇒ Array<String>
Set of capabilities that the user is allowed to perform in the stage.
2005 2006 2007 2008 2009 2010 2011 2012 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2005 class ParticipantTokenConfiguration < Struct.new( :duration, :user_id, :attributes, :capabilities) SENSITIVE = [] include Aws::Structure end |
#duration ⇒ Integer
Duration (in minutes), after which the corresponding participant token expires. Default: 720 (12 hours).
2005 2006 2007 2008 2009 2010 2011 2012 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2005 class ParticipantTokenConfiguration < Struct.new( :duration, :user_id, :attributes, :capabilities) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
Customer-assigned name to help identify the token; this can be used to link a participant to a user in the customer’s own systems. This can be any UTF-8 encoded text. *This field is exposed to all stage participants and should not be used for personally identifying, confidential, or sensitive information.*
2005 2006 2007 2008 2009 2010 2011 2012 |
# File 'lib/aws-sdk-ivsrealtime/types.rb', line 2005 class ParticipantTokenConfiguration < Struct.new( :duration, :user_id, :attributes, :capabilities) SENSITIVE = [] include Aws::Structure end |