Class: Aws::Connect::Types::PhoneNumberConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#channelString

The channel for this phone number configuration. **Only VOICE is supported for this data type.**

Returns:

  • (String)


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_numberString

The phone number for the user’s desk phone.

Returns:

  • (String)


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_typeString

The phone type. Valid values: SOFT_PHONE, DESK_PHONE.

Returns:

  • (String)


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