Backup / Client / list_indexed_recovery_points
list_indexed_recovery_points¶
- Backup.Client.list_indexed_recovery_points(**kwargs)¶
- This operation returns a list of recovery points that have an associated index, belonging to the specified account. - Optional parameters you can include are: MaxResults; NextToken; SourceResourceArns; CreatedBefore; CreatedAfter; and ResourceType. - See also: AWS API Documentation - Request Syntax- response = client.list_indexed_recovery_points( NextToken='string', MaxResults=123, SourceResourceArn='string', CreatedBefore=datetime(2015, 1, 1), CreatedAfter=datetime(2015, 1, 1), ResourceType='string', IndexStatus='PENDING'|'ACTIVE'|'FAILED'|'DELETING' ) - Parameters:
- NextToken (string) – - The next item following a partial list of returned recovery points. - For example, if a request is made to return - MaxResultsnumber of indexed recovery points,- NextTokenallows you to return more items in your list starting at the location pointed to by the next token.
- MaxResults (integer) – The maximum number of resource list items to be returned. 
- SourceResourceArn (string) – A string of the Amazon Resource Name (ARN) that uniquely identifies the source resource. 
- CreatedBefore (datetime) – Returns only indexed recovery points that were created before the specified date. 
- CreatedAfter (datetime) – Returns only indexed recovery points that were created after the specified date. 
- ResourceType (string) – - Returns a list of indexed recovery points for the specified resource type(s). - Accepted values include: - EBSfor Amazon Elastic Block Store
- S3for Amazon Simple Storage Service (Amazon S3)
 
- IndexStatus (string) – - Include this parameter to filter the returned list by the indicated statuses. - Accepted values: - PENDING|- ACTIVE|- FAILED|- DELETING- A recovery point with an index that has the status of - ACTIVEcan be included in a search.
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'IndexedRecoveryPoints': [ { 'RecoveryPointArn': 'string', 'SourceResourceArn': 'string', 'IamRoleArn': 'string', 'BackupCreationDate': datetime(2015, 1, 1), 'ResourceType': 'string', 'IndexCreationDate': datetime(2015, 1, 1), 'IndexStatus': 'PENDING'|'ACTIVE'|'FAILED'|'DELETING', 'IndexStatusMessage': 'string', 'BackupVaultArn': 'string' }, ], 'NextToken': 'string' } - Response Structure- (dict) – - IndexedRecoveryPoints (list) – - This is a list of recovery points that have an associated index, belonging to the specified account. - (dict) – - This is a recovery point that has an associated backup index. - Only recovery points with a backup index can be included in a search. - RecoveryPointArn (string) – - An ARN that uniquely identifies a recovery point; for example, - arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45
- SourceResourceArn (string) – - A string of the Amazon Resource Name (ARN) that uniquely identifies the source resource. 
- IamRoleArn (string) – - This specifies the IAM role ARN used for this operation. - For example, arn:aws:iam::123456789012:role/S3Access 
- BackupCreationDate (datetime) – - The date and time that a backup was created, in Unix format and Coordinated Universal Time (UTC). The value of - CreationDateis accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
- ResourceType (string) – - The resource type of the indexed recovery point. - EBSfor Amazon Elastic Block Store
- S3for Amazon Simple Storage Service (Amazon S3)
 
- IndexCreationDate (datetime) – - The date and time that a backup index was created, in Unix format and Coordinated Universal Time (UTC). The value of - CreationDateis accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
- IndexStatus (string) – - This is the current status for the backup index associated with the specified recovery point. - Statuses are: - PENDING|- ACTIVE|- FAILED|- DELETING- A recovery point with an index that has the status of - ACTIVEcan be included in a search.
- IndexStatusMessage (string) – - A string in the form of a detailed message explaining the status of a backup index associated with the recovery point. 
- BackupVaultArn (string) – - An ARN that uniquely identifies the backup vault where the recovery point index is stored. - For example, - arn:aws:backup:us-east-1:123456789012:backup-vault:aBackupVault.
 
 
- NextToken (string) – - The next item following a partial list of returned recovery points. - For example, if a request is made to return - MaxResultsnumber of indexed recovery points,- NextTokenallows you to return more items in your list starting at the location pointed to by the next token.
 
 
 - Exceptions