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.
16088 16089 16090 16091 16092 16093 16094 16095 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16088 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.
16088 16089 16090 16091 16092 16093 16094 16095 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16088 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).
16088 16089 16090 16091 16092 16093 16094 16095 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16088 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.
16088 16089 16090 16091 16092 16093 16094 16095 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 16088 class QuickConnectConfig < Struct.new( :quick_connect_type, :user_config, :queue_config, :phone_config) SENSITIVE = [] include Aws::Structure end |