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.
-
#persistent_connection ⇒ Boolean
The persistent connection setting for the user.
-
#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.
27936 27937 27938 27939 27940 27941 27942 27943 27944 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 27936 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number, :persistent_connection) SENSITIVE = [] include Aws::Structure end |
#auto_accept ⇒ Boolean
The Auto accept setting.
27936 27937 27938 27939 27940 27941 27942 27943 27944 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 27936 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number, :persistent_connection) SENSITIVE = [] include Aws::Structure end |
#desk_phone_number ⇒ String
The phone number for the user's desk phone.
27936 27937 27938 27939 27940 27941 27942 27943 27944 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 27936 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number, :persistent_connection) SENSITIVE = [] include Aws::Structure end |
#persistent_connection ⇒ Boolean
The persistent connection setting for the user.
27936 27937 27938 27939 27940 27941 27942 27943 27944 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 27936 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number, :persistent_connection) SENSITIVE = [] include Aws::Structure end |
#phone_type ⇒ String
The phone type.
27936 27937 27938 27939 27940 27941 27942 27943 27944 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 27936 class UserPhoneConfig < Struct.new( :phone_type, :auto_accept, :after_contact_work_time_limit, :desk_phone_number, :persistent_connection) SENSITIVE = [] include Aws::Structure end |