:doc:`Backup <../../backup>` / Paginator / ListTieringConfigurations

*************************
ListTieringConfigurations
*************************



.. py:class:: Backup.Paginator.ListTieringConfigurations

  ::

    
    paginator = client.get_paginator('list_tiering_configurations')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Backup.Client.list_tiering_configurations`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'TieringConfigurations': [
                {
                    'TieringConfigurationArn': 'string',
                    'TieringConfigurationName': 'string',
                    'BackupVaultName': 'string',
                    'CreationTime': datetime(2015, 1, 1),
                    'LastUpdatedTime': datetime(2015, 1, 1)
                },
            ],
            
        }
        
      **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.

              
        
      
    