:doc:`Connect <../../connect>` / Client / list_queue_quick_connects

*************************
list_queue_quick_connects
*************************



.. py:method:: Connect.Client.list_queue_quick_connects(**kwargs)

  

  Lists the quick connects associated with a queue.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueQuickConnects>`_  


  **Request Syntax**
  ::

    response = client.list_queue_quick_connects(
        InstanceId='string',
        QueueId='string',
        NextToken='string',
        MaxResults=123
    )
    
  :type InstanceId: string
  :param InstanceId: **[REQUIRED]** 

    The identifier of the Amazon Connect instance. You can `find the instance ID <https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html>`__ in the Amazon Resource Name (ARN) of the instance.

    

  
  :type QueueId: string
  :param QueueId: **[REQUIRED]** 

    The identifier for the queue.

    

  
  :type NextToken: string
  :param NextToken: 

    The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of results to return per page. The default MaxResult size is 100.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'NextToken': 'string',
          'QuickConnectSummaryList': [
              {
                  'Id': 'string',
                  'Arn': 'string',
                  'Name': 'string',
                  'QuickConnectType': 'USER'|'QUEUE'|'PHONE_NUMBER'|'FLOW',
                  'LastModifiedTime': datetime(2015, 1, 1),
                  'LastModifiedRegion': 'string'
              },
          ],
          'LastModifiedTime': datetime(2015, 1, 1),
          'LastModifiedRegion': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **NextToken** *(string) --* 

        If there are additional results, this is the token for the next set of results.

        
      

      - **QuickConnectSummaryList** *(list) --* 

        Information about the quick connects.

        
        

        - *(dict) --* 

          Contains summary information about a quick connect.

          
          

          - **Id** *(string) --* 

            The identifier for the quick connect.

            
          

          - **Arn** *(string) --* 

            The Amazon Resource Name (ARN) of the quick connect.

            
          

          - **Name** *(string) --* 

            The name of the quick connect.

            
          

          - **QuickConnectType** *(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).

            
          

          - **LastModifiedTime** *(datetime) --* 

            The timestamp when this resource was last modified.

            
          

          - **LastModifiedRegion** *(string) --* 

            The Amazon Web Services Region where this resource was last modified.

            
      
    
      

      - **LastModifiedTime** *(datetime) --* 

        The timestamp when this resource was last modified.

        
      

      - **LastModifiedRegion** *(string) --* 

        The Amazon Web Services Region where this resource was last modified.

        
  
  **Exceptions**
  
  *   :py:class:`Connect.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`Connect.Client.exceptions.InvalidParameterException`

  
  *   :py:class:`Connect.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`Connect.Client.exceptions.ThrottlingException`

  
  *   :py:class:`Connect.Client.exceptions.InternalServiceException`

  