:doc:`Backup <../../backup>` / Client / list_tiering_configurations

***************************
list_tiering_configurations
***************************



.. py:method:: Backup.Client.list_tiering_configurations(**kwargs)

  

  Returns a list of tiering configurations.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/backup-2018-11-15/ListTieringConfigurations>`_  


  **Request Syntax**
  ::

    response = client.list_tiering_configurations(
        MaxResults=123,
        NextToken='string'
    )
    
  :type MaxResults: integer
  :param MaxResults: 

    The maximum number of items to be returned.

    

  
  :type NextToken: string
  :param NextToken: 

    The next item following a partial list of returned items. For example, if a request is made to return ``MaxResults`` number of items, ``NextToken`` allows you to return more items in your list starting at the location pointed to by the next token.

    

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

    
    ::

      {
          'TieringConfigurations': [
              {
                  'TieringConfigurationArn': 'string',
                  'TieringConfigurationName': 'string',
                  'BackupVaultName': 'string',
                  'CreationTime': datetime(2015, 1, 1),
                  'LastUpdatedTime': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TieringConfigurations** *(list) --* 

        An array of tiering configurations returned by the ``ListTieringConfigurations`` call.

        
        

        - *(dict) --* 

          This contains metadata about a tiering configuration returned in a list.

          
          

          - **TieringConfigurationArn** *(string) --* 

            An Amazon Resource Name (ARN) that uniquely identifies the tiering configuration.

            
          

          - **TieringConfigurationName** *(string) --* 

            The unique name of the tiering configuration.

            
          

          - **BackupVaultName** *(string) --* 

            The name of the backup vault where the tiering configuration applies. Use ``*`` to apply to all backup vaults.

            
          

          - **CreationTime** *(datetime) --* 

            The date and time a tiering configuration was created, in Unix format and Coordinated Universal Time (UTC). The value of ``CreationTime`` is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.

            
          

          - **LastUpdatedTime** *(datetime) --* 

            The date and time a tiering configuration was updated, in Unix format and Coordinated Universal Time (UTC). The value of ``LastUpdatedTime`` is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087AM.

            
      
    
      

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

        The next item following a partial list of returned items. For example, if a request is made to return ``MaxResults`` number of items, ``NextToken`` allows you to return more items in your list starting at the location pointed to by the next token.

        
  
  **Exceptions**
  
  *   :py:class:`Backup.Client.exceptions.InvalidParameterValueException`

  
  *   :py:class:`Backup.Client.exceptions.ServiceUnavailableException`

  