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

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


2116
2117
2118
2119
2120
2121
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2116

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)


2116
2117
2118
2119
2120
2121
# File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2116

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