Class: Aws::ChimeSDKVoice::Types::Participant
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ChimeSDKVoice::Types::Participant
 
- 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
- 
  
    
      #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.
| 2214 2215 2216 2217 2218 2219 | # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2214 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.
| 2214 2215 2216 2217 2218 2219 | # File 'gems/aws-sdk-chimesdkvoice/lib/aws-sdk-chimesdkvoice/types.rb', line 2214 class Participant < Struct.new( :phone_number, :proxy_phone_number) SENSITIVE = [:phone_number, :proxy_phone_number] include Aws::Structure end |