Class: Aws::Connect::Types::QuickConnectConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::QuickConnectConfig
- Defined in:
- gems/aws-sdk-connect/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.
17206 17207 17208 17209 17210 17211 17212 17213 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17206 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.
17206 17207 17208 17209 17210 17211 17212 17213 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17206 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).
17206 17207 17208 17209 17210 17211 17212 17213 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17206 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.
17206 17207 17208 17209 17210 17211 17212 17213 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 17206 class QuickConnectConfig < Struct.new( :quick_connect_type, :user_config, :queue_config, :phone_config) SENSITIVE = [] include Aws::Structure end |