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.
      18051 18052 18053 18054 18055 18056 18057 18058  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18051 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.
      18051 18052 18053 18054 18055 18056 18057 18058  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18051 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).
      18051 18052 18053 18054 18055 18056 18057 18058  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18051 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.
      18051 18052 18053 18054 18055 18056 18057 18058  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 18051 class QuickConnectConfig < Struct.new( :quick_connect_type, :user_config, :queue_config, :phone_config) SENSITIVE = [] include Aws::Structure end  |