Class: Aws::Connect::Types::UserPhoneConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::UserPhoneConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Contains information about the phone configuration settings for a user.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#after_contact_work_time_limit ⇒ Integer
The After Call Work (ACW) timeout setting, in seconds.
-
#auto_accept ⇒ Boolean
The Auto accept setting.
-
#desk_phone_number ⇒ String
The phone number for the user’s desk phone.
-
#phone_type ⇒ String
The phone type.
Instance Attribute Details
#after_contact_work_time_limit ⇒ Integer
The After Call Work (ACW) timeout setting, in seconds. This parameter has a minimum value of 0 and a maximum value of 2,000,000 seconds (24 days). Enter 0 if you don’t want to allocate a specific amount of ACW time. It essentially means an indefinite amount of time. When the conversation ends, ACW starts; the agent must choose Close contact to end ACW.
<note markdown=“1”> When returned by a ‘SearchUsers` call, `AfterContactWorkTimeLimit` is returned in milliseconds.
</note>
23729 23730 23731 23732 23733 23734 23735 23736 |
# File 'lib/aws-sdk-connect/types.rb', line 23729 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number) SENSITIVE = [] include Aws::Structure end |
#auto_accept ⇒ Boolean
The Auto accept setting.
23729 23730 23731 23732 23733 23734 23735 23736 |
# File 'lib/aws-sdk-connect/types.rb', line 23729 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number) SENSITIVE = [] include Aws::Structure end |
#desk_phone_number ⇒ String
The phone number for the user’s desk phone.
23729 23730 23731 23732 23733 23734 23735 23736 |
# File 'lib/aws-sdk-connect/types.rb', line 23729 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number) SENSITIVE = [] include Aws::Structure end |
#phone_type ⇒ String
The phone type.
23729 23730 23731 23732 23733 23734 23735 23736 |
# File 'lib/aws-sdk-connect/types.rb', line 23729 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number) SENSITIVE = [] include Aws::Structure end |