Class: Aws::ChimeSDKVoice::Types::Participant
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKVoice::Types::Participant
- 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
-
#phone_number ⇒ String
The participant’s phone number.
-
#proxy_phone_number ⇒ String
The participant’s proxy phone number.
Instance Attribute Details
#phone_number ⇒ String
The participant’s phone number.
2116 2117 2118 2119 2120 2121 |
# File '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_number ⇒ String
The participant’s proxy phone number.
2116 2117 2118 2119 2120 2121 |
# File '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 |