Class: Aws::ChimeSDKVoice::Types::Participant

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

Overview

The phone number and proxy phone number for a participant in an Amazon Chime SDK Voice Connector proxy session.

Constant Summary collapse

SENSITIVE =
[:phone_number, :proxy_phone_number]

Instance Attribute Summary collapse

Instance Attribute Details

#phone_numberString

The participant’s phone number.

Returns:

  • (String)


2208
2209
2210
2211
2212
2213
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2208

class Participant < Struct.new(
  :phone_number,
  :proxy_phone_number)
  SENSITIVE = [:phone_number, :proxy_phone_number]
  include Aws::Structure
end

#proxy_phone_numberString

The participant’s proxy phone number.

Returns:

  • (String)


2208
2209
2210
2211
2212
2213
# File 'lib/aws-sdk-chimesdkvoice/types.rb', line 2208

class Participant < Struct.new(
  :phone_number,
  :proxy_phone_number)
  SENSITIVE = [:phone_number, :proxy_phone_number]
  include Aws::Structure
end