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

*********************************************
list_routing_profile_manual_assignment_queues
*********************************************



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

  

  Lists the manual assignment queues associated with a routing profile.

   

  **Use cases**

   

  Following are common uses cases for this API:

   

  
  * This API returns list of queues where contacts can be manually assigned or picked by an agent who has access to the Worklist app. The user can additionally filter on queues, if they have access to those queues (otherwise a invalid request exception will be thrown). For information about how manual contact assignment works in the agent workspace, see the `Access the Worklist app in the Amazon Connect agent workspace <https://docs.aws.amazon.com/connect/latest/adminguide/worklist-app.html>`__ in the *Amazon Connect Administrator Guide*.
  

   

  **Important things to know**

   

  
  * This API only returns the manual assignment queues associated with a routing profile. Use the ListRoutingProfileQueues API to list the auto assignment queues for the routing profile.
  

   

  **Endpoints**: See `Amazon Connect endpoints and quotas <https://docs.aws.amazon.com/general/latest/gr/connect_region.html>`__.

  

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


  **Request Syntax**
  ::

    response = client.list_routing_profile_manual_assignment_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.

    

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

    
    ::

      {
          'NextToken': 'string',
          'RoutingProfileManualAssignmentQueueConfigSummaryList': [
              {
                  'QueueId': 'string',
                  'QueueArn': 'string',
                  'QueueName': 'string',
                  '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.

        
      

      - **RoutingProfileManualAssignmentQueueConfigSummaryList** *(list) --* 

        Information about the manual assignment queues associated with the routing profile.

        
        

        - *(dict) --* 

          Contains summary information about a routing profile manual assignment 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.

            
          

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

            The channels this queue supports. Valid Values: CHAT | TASK | EMAIL

             

            .. warning::

               

              VOICE is not supported. The information shown below is incorrect. We're working to correct it.

              

            
      
    
      

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

  