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

***************************
list_routing_profile_queues
***************************



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

  

  Lists the queues associated with a routing profile.

  

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


  **Request Syntax**
  ::

    response = client.list_routing_profile_queues(
        InstanceId='string',
        RoutingProfileId='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 RoutingProfileId: string
  :param RoutingProfileId: **[REQUIRED]** 

    The identifier of the routing profile.

    

  
  :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',
          'RoutingProfileQueueConfigSummaryList': [
              {
                  'QueueId': 'string',
                  'QueueArn': 'string',
                  'QueueName': 'string',
                  'Priority': 123,
                  'Delay': 123,
                  'Channel': 'VOICE'|'CHAT'|'TASK'|'EMAIL'
              },
          ],
          '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.

        
      

      - **RoutingProfileQueueConfigSummaryList** *(list) --* 

        Information about the routing profiles.

        
        

        - *(dict) --* 

          Contains summary information about a routing profile queue.

          
          

          - **QueueId** *(string) --* 

            The identifier for the queue.

            
          

          - **QueueArn** *(string) --* 

            The Amazon Resource Name (ARN) of the queue.

            
          

          - **QueueName** *(string) --* 

            The name of the queue.

            
          

          - **Priority** *(integer) --* 

            The order in which contacts are to be handled for the queue. For more information, see `Queues\: priority and delay <https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html>`__.

            
          

          - **Delay** *(integer) --* 

            The delay, in seconds, that a contact should be in the queue before they are routed to an available agent. For more information, see `Queues\: priority and delay <https://docs.aws.amazon.com/connect/latest/adminguide/concepts-routing-profiles-priority.html>`__ in the *Amazon Connect Administrator Guide*.

            
          

          - **Channel** *(string) --* 

            The channels this queue supports.

            
      
    
      

      - **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`

  