Class: Aws::Ivschat::Types::CreateChatTokenResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ivschat/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[:token]

Instance Attribute Summary collapse

Instance Attribute Details

#session_expiration_timeTime

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*.

Returns:

  • (Time)


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

#tokenString

The issued client token, encrypted.

Returns:

  • (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_expiration_timeTime

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*.

Returns:

  • (Time)


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