Backup / Paginator / ListTieringConfigurations

ListTieringConfigurations

class Backup.Paginator.ListTieringConfigurations
paginator = client.get_paginator('list_tiering_configurations')
paginate(**kwargs)

Creates an iterator that will paginate through responses from Backup.Client.list_tiering_configurations().

See also: AWS API Documentation

Request Syntax

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

PaginationConfig (dict) –

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.

Return type:

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.