Class: Aws::Connect::Types::Attendee

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

Overview

The attendee information, including attendee ID and join token.

Constant Summary collapse

SENSITIVE =
[:join_token]

Instance Attribute Summary collapse

Instance Attribute Details

#attendee_idString

The Amazon Chime SDK attendee ID.

Returns:

  • (String)


963
964
965
966
967
968
# File 'lib/aws-sdk-connect/types.rb', line 963

class Attendee < Struct.new(
  :attendee_id,
  :join_token)
  SENSITIVE = [:join_token]
  include Aws::Structure
end

#join_tokenString

The join token used by the Amazon Chime SDK attendee.

Returns:

  • (String)


963
964
965
966
967
968
# File 'lib/aws-sdk-connect/types.rb', line 963

class Attendee < Struct.new(
  :attendee_id,
  :join_token)
  SENSITIVE = [:join_token]
  include Aws::Structure
end