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

*************************************
list_calculated_attribute_definitions
*************************************



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

  

  Lists calculated attribute definitions for Customer Profiles

  

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


  **Request Syntax**
  ::

    response = client.list_calculated_attribute_definitions(
        DomainName='string',
        NextToken='string',
        MaxResults=123
    )
    
  :type DomainName: string
  :param DomainName: **[REQUIRED]** 

    The unique name of the domain.

    

  
  :type NextToken: string
  :param NextToken: 

    The pagination token from the previous call to ListCalculatedAttributeDefinitions.

    

  
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of calculated attribute definitions returned per page.

    

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

    
    ::

      {
          'Items': [
              {
                  'CalculatedAttributeName': 'string',
                  'DisplayName': 'string',
                  'Description': 'string',
                  'CreatedAt': datetime(2015, 1, 1),
                  'LastUpdatedAt': datetime(2015, 1, 1),
                  'UseHistoricalData': True|False,
                  'Status': 'PREPARING'|'IN_PROGRESS'|'COMPLETED'|'FAILED',
                  'Tags': {
                      'string': 'string'
                  }
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The list of calculated attribute definitions.

        
        

        - *(dict) --* 

          The details of a single calculated attribute definition.

          
          

          - **CalculatedAttributeName** *(string) --* 

            The unique name of the calculated attribute.

            
          

          - **DisplayName** *(string) --* 

            The display name of the calculated attribute.

            
          

          - **Description** *(string) --* 

            The threshold for the calculated attribute.

            
          

          - **CreatedAt** *(datetime) --* 

            The threshold for the calculated attribute.

            
          

          - **LastUpdatedAt** *(datetime) --* 

            The timestamp of when the calculated attribute definition was most recently edited.

            
          

          - **UseHistoricalData** *(boolean) --* 

            Whether historical data ingested before the Calculated Attribute was created should be included in calculations.

            
          

          - **Status** *(string) --* 

            Status of the Calculated Attribute creation (whether all historical data has been indexed.)

            
          

          - **Tags** *(dict) --* 

            The tags used to organize, track, or control access for this resource.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
      
    
      

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

        The pagination token from the previous call to ListCalculatedAttributeDefinitions.

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

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

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

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

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

  