Skip to main content

recovery_point_index_details

Creates, updates, deletes, gets or lists a recovery_point_index_details resource.

Overview

Namerecovery_point_index_details
TypeResource
Idaws.backup.recovery_point_index_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
backup_vault_arnstringAn 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.
index_completion_datestring (date-time)The date and time that a backup index finished creation, in Unix format and Coordinated Universal Time (UTC). The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
index_creation_datestring (date-time)The date and time that a backup index was created, in Unix format and Coordinated Universal Time (UTC). The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
index_deletion_datestring (date-time)The date and time that a backup index was deleted, in Unix format and Coordinated Universal Time (UTC). The value of CreationDate is accurate to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
index_statusstringThis 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 ACTIVE can be included in a search. (PENDING, ACTIVE, FAILED, DELETING)
index_status_messagestringA detailed message explaining the status of a backup index associated with the recovery point.
recovery_point_arnstringAn ARN that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
source_resource_arnstringA string of the Amazon Resource Name (ARN) that uniquely identifies the source resource.
total_items_indexedinteger (int64)Count of items within the backup index associated with the recovery point.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_recovery_point_index_detailsselectbackup_vault_name, recovery_point_arn, regionThis operation returns the metadata and details specific to the backup index associated with the specified recovery point.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
backup_vault_namestringThe name of a logical container where backups are stored. Backup vaults are identified by names that are unique to the account used to create them and the Region where they are created. Accepted characters include lowercase letters, numbers, and hyphens.
recovery_point_arnstringAn ARN that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
regionstringAWS region (default: us-east-1)

SELECT examples

This operation returns the metadata and details specific to the backup index associated with the specified recovery point.

SELECT
backup_vault_arn,
index_completion_date,
index_creation_date,
index_deletion_date,
index_status,
index_status_message,
recovery_point_arn,
source_resource_arn,
total_items_indexed
FROM aws.backup.recovery_point_index_details
WHERE backup_vault_name = '{{ backup_vault_name }}' -- required
AND recovery_point_arn = '{{ recovery_point_arn }}' -- required
AND region = '{{ region }}' -- required
;