Class: Aws::Connect::Types::UserPhoneConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::UserPhoneConfig
- Defined in:
- gems/aws-sdk-connect/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.
SearchUsers
call, AfterContactWorkTimeLimit
is returned in milliseconds.
23528 23529 23530 23531 23532 23533 23534 23535 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23528 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.
23528 23529 23530 23531 23532 23533 23534 23535 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23528 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.
23528 23529 23530 23531 23532 23533 23534 23535 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23528 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.
23528 23529 23530 23531 23532 23533 23534 23535 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 23528 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number) SENSITIVE = [] include Aws::Structure end |