:doc:`CustomerProfiles <../../customer-profiles>` / Client / list_profile_attribute_values

*****************************
list_profile_attribute_values
*****************************



.. py:method:: CustomerProfiles.Client.list_profile_attribute_values(**kwargs)

  

  Fetch the possible attribute values given the attribute name.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/customer-profiles-2020-08-15/ListProfileAttributeValues>`_  


  **Request Syntax**
  ::

    response = client.list_profile_attribute_values(
        DomainName='string',
        AttributeName='string'
    )
    
  :type DomainName: string
  :param DomainName: **[REQUIRED]** 

    The unique identifier of the domain.

    

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

    The attribute name.

    

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

    
    ::

      {
          'DomainName': 'string',
          'AttributeName': 'string',
          'Items': [
              {
                  'Value': 'string'
              },
          ],
          'StatusCode': 123
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **DomainName** *(string) --* 

        The name of the domain.

        
      

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

        The attribute name.

        
      

      - **Items** *(list) --* 

        The items returned as part of the response.

        
        

        - *(dict) --* 

          List containing the values for the given attribute.

          
          

          - **Value** *(string) --* 

            An individual value belonging to the given attribute.

            
      
    
      

      - **StatusCode** *(integer) --* 

        The status code for the response.

        
  
  **Exceptions**
  
  *   :py:class:`CustomerProfiles.Client.exceptions.BadRequestException`

  
  *   :py:class:`CustomerProfiles.Client.exceptions.AccessDeniedException`

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

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

  
  *   :py:class:`CustomerProfiles.Client.exceptions.InternalServerException`

  