Class: Aws::Connect::Types::ParticipantTokenCredentials

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb

Overview

The credentials used by the participant.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#expiryString

The expiration of the token. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2019-11-08T02:41:28.172Z.

Returns:

  • (String)


13831
13832
13833
13834
13835
13836
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 13831

class ParticipantTokenCredentials < Struct.new(
  :participant_token,
  :expiry)
  SENSITIVE = []
  include Aws::Structure
end

#participant_tokenString

The token used by the chat participant to call CreateParticipantConnection. The participant token is valid for the lifetime of a chat participant.

Returns:

  • (String)


13831
13832
13833
13834
13835
13836
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 13831

class ParticipantTokenCredentials < Struct.new(
  :participant_token,
  :expiry)
  SENSITIVE = []
  include Aws::Structure
end