Backup / Client / list_tiering_configurations
list_tiering_configurations¶
- Backup.Client.list_tiering_configurations(**kwargs)¶
Returns a list of tiering configurations.
See also: AWS API Documentation
Request Syntax
response = client.list_tiering_configurations( MaxResults=123, NextToken='string' )
- Parameters:
MaxResults (integer) – The maximum number of items to be returned.
NextToken (string) – The next item following a partial list of returned items. For example, if a request is made to return
MaxResultsnumber of items,NextTokenallows you to return more items in your list starting at the location pointed to by the next token.
- Return type:
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
ListTieringConfigurationscall.(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
CreationTimeis 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
LastUpdatedTimeis 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
MaxResultsnumber of items,NextTokenallows you to return more items in your list starting at the location pointed to by the next token.
Exceptions