Class: Aws::Connect::Types::QuickConnectConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::QuickConnectConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-connect/types.rb
Overview
Contains configuration settings for a quick connect.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#phone_config ⇒ Types::PhoneNumberQuickConnectConfig
The phone configuration.
-
#queue_config ⇒ Types::QueueQuickConnectConfig
The queue configuration.
-
#quick_connect_type ⇒ String
The type of quick connect.
-
#user_config ⇒ Types::UserQuickConnectConfig
The user configuration.
Instance Attribute Details
#phone_config ⇒ Types::PhoneNumberQuickConnectConfig
The phone configuration. This is required only if QuickConnectType is PHONE_NUMBER.
15855 15856 15857 15858 15859 15860 15861 15862 |
# File 'lib/aws-sdk-connect/types.rb', line 15855 class QuickConnectConfig < Struct.new( :quick_connect_type, :user_config, :queue_config, :phone_config) SENSITIVE = [] include Aws::Structure end |
#queue_config ⇒ Types::QueueQuickConnectConfig
The queue configuration. This is required only if QuickConnectType is QUEUE.
15855 15856 15857 15858 15859 15860 15861 15862 |
# File 'lib/aws-sdk-connect/types.rb', line 15855 class QuickConnectConfig < Struct.new( :quick_connect_type, :user_config, :queue_config, :phone_config) SENSITIVE = [] include Aws::Structure end |
#quick_connect_type ⇒ String
The type of quick connect. In the Amazon Connect admin website, when you create a quick connect, you are prompted to assign one of the following types: Agent (USER), External (PHONE_NUMBER), or Queue (QUEUE).
15855 15856 15857 15858 15859 15860 15861 15862 |
# File 'lib/aws-sdk-connect/types.rb', line 15855 class QuickConnectConfig < Struct.new( :quick_connect_type, :user_config, :queue_config, :phone_config) SENSITIVE = [] include Aws::Structure end |
#user_config ⇒ Types::UserQuickConnectConfig
The user configuration. This is required only if QuickConnectType is USER.
15855 15856 15857 15858 15859 15860 15861 15862 |
# File 'lib/aws-sdk-connect/types.rb', line 15855 class QuickConnectConfig < Struct.new( :quick_connect_type, :user_config, :queue_config, :phone_config) SENSITIVE = [] include Aws::Structure end |