Class: Aws::Connect::Types::PhoneNumberConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::PhoneNumberConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Configuration settings for phone type and phone number.
Constant Summary collapse
- SENSITIVE =
[:phone_number]
Instance Attribute Summary collapse
-
#channel ⇒ String
The channel for this phone number configuration.
-
#phone_number ⇒ String
The phone number for the user’s desk phone.
-
#phone_type ⇒ String
The phone type.
Instance Attribute Details
#channel ⇒ String
The channel for this phone number configuration. **Only VOICE is supported for this data type.**
24547 24548 24549 24550 24551 24552 24553 |
# File 'lib/aws-sdk-connect/types.rb', line 24547 class PhoneNumberConfig < Struct.new( :channel, :phone_type, :phone_number) SENSITIVE = [:phone_number] include Aws::Structure end |
#phone_number ⇒ String
The phone number for the user’s desk phone.
24547 24548 24549 24550 24551 24552 24553 |
# File 'lib/aws-sdk-connect/types.rb', line 24547 class PhoneNumberConfig < Struct.new( :channel, :phone_type, :phone_number) SENSITIVE = [:phone_number] include Aws::Structure end |
#phone_type ⇒ String
The phone type. Valid values: SOFT_PHONE, DESK_PHONE.
24547 24548 24549 24550 24551 24552 24553 |
# File 'lib/aws-sdk-connect/types.rb', line 24547 class PhoneNumberConfig < Struct.new( :channel, :phone_type, :phone_number) SENSITIVE = [:phone_number] include Aws::Structure end |