Class: Aws::ConnectParticipant::Types::Attendee

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/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)


74
75
76
77
78
79
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 74

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)


74
75
76
77
78
79
# File 'gems/aws-sdk-connectparticipant/lib/aws-sdk-connectparticipant/types.rb', line 74

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