Class: Aws::Ivschat::Types::CreateChatTokenResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::CreateChatTokenResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivschat/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:token]
Instance Attribute Summary collapse
-
#session_expiration_time ⇒ Time
Time after which an end user’s session is no longer valid.
-
#token ⇒ String
The issued client token, encrypted.
-
#token_expiration_time ⇒ Time
Time after which the token is no longer valid and cannot be used to connect to a room.
Instance Attribute Details
#session_expiration_time ⇒ Time
Time after which an end user’s session is no longer valid. This is an ISO 8601 timestamp; *note that this is returned as a string*.
114 115 116 117 118 119 120 |
# File 'lib/aws-sdk-ivschat/types.rb', line 114 class CreateChatTokenResponse < Struct.new( :token, :token_expiration_time, :session_expiration_time) SENSITIVE = [:token] include Aws::Structure end |
#token ⇒ String
The issued client token, encrypted.
114 115 116 117 118 119 120 |
# File 'lib/aws-sdk-ivschat/types.rb', line 114 class CreateChatTokenResponse < Struct.new( :token, :token_expiration_time, :session_expiration_time) SENSITIVE = [:token] include Aws::Structure end |
#token_expiration_time ⇒ Time
Time after which the token is no longer valid and cannot be used to connect to a room. This is an ISO 8601 timestamp; *note that this is returned as a string*.
114 115 116 117 118 119 120 |
# File 'lib/aws-sdk-ivschat/types.rb', line 114 class CreateChatTokenResponse < Struct.new( :token, :token_expiration_time, :session_expiration_time) SENSITIVE = [:token] include Aws::Structure end |