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

***********************
list_user_proficiencies
***********************



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

  

  Lists proficiencies associated with a user.

  

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


  **Request Syntax**
  ::

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

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    

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

    The identifier of the user account.

    

  
  :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',
          'UserProficiencyList': [
              {
                  'AttributeName': 'string',
                  'AttributeValue': 'string',
                  'Level': ...
              },
          ],
          '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.

        
      

      - **UserProficiencyList** *(list) --* 

        Information about the user proficiencies.

        
        

        - *(dict) --* 

          Information about proficiency of a user.

          
          

          - **AttributeName** *(string) --* 

            The name of user's proficiency. You must use name of predefined attribute present in the Amazon Connect instance.

            
          

          - **AttributeValue** *(string) --* 

            The value of user's proficiency. You must use value of predefined attribute present in the Amazon Connect instance.

            
          

          - **Level** *(float) --* 

            The level of the proficiency. The valid values are 1, 2, 3, 4 and 5.

            
      
    
      

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

        The last time that the user's proficiencies are were modified.

        
      

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

        The region in which a user's proficiencies were 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`

  