Class: Aws::Connect::Types::UpdateQueueMaxContactsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::UpdateQueueMaxContactsRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the Amazon Connect instance.
 - 
  
    
      #max_contacts  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of contacts that can be in the queue before it is considered full.
 - 
  
    
      #queue_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier for the queue.
 
Instance Attribute Details
#instance_id ⇒ String
The identifier of the Amazon Connect instance. You can [find the instance ID] in the Amazon Resource Name (ARN) of the instance.
[1]: docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
      25304 25305 25306 25307 25308 25309 25310  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 25304 class UpdateQueueMaxContactsRequest < Struct.new( :instance_id, :queue_id, :max_contacts) SENSITIVE = [] include Aws::Structure end  | 
  
#max_contacts ⇒ Integer
The maximum number of contacts that can be in the queue before it is considered full.
      25304 25305 25306 25307 25308 25309 25310  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 25304 class UpdateQueueMaxContactsRequest < Struct.new( :instance_id, :queue_id, :max_contacts) SENSITIVE = [] include Aws::Structure end  | 
  
#queue_id ⇒ String
The identifier for the queue.
      25304 25305 25306 25307 25308 25309 25310  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 25304 class UpdateQueueMaxContactsRequest < Struct.new( :instance_id, :queue_id, :max_contacts) SENSITIVE = [] include Aws::Structure end  |