Class: Aws::Chime::Types::Participant

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb

Overview

The phone number and proxy phone number for a participant in an Amazon Chime 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)


6411
6412
6413
6414
6415
6416
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 6411

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)


6411
6412
6413
6414
6415
6416
# File 'gems/aws-sdk-chime/lib/aws-sdk-chime/types.rb', line 6411

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