Skip to main content

restore_testing_inferred_metadatas

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

Overview

Namerestore_testing_inferred_metadatas
TypeResource
Idaws.backup.restore_testing_inferred_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
inferred_metadataobjectThis is a string map of the metadata inferred from the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_restore_testing_inferred_metadataselectBackupVaultName, RecoveryPointArn, regionBackupVaultAccountIdThis request returns the minimal required set of metadata needed to start a restore job with secure default settings. BackupVaultName and RecoveryPointArn are required parameters. BackupVaultAccountId is an optional parameter.

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
BackupVaultNamestringThe 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 Amazon Web ServicesRegion where they are created. They consist of letters, numbers, and hyphens.
RecoveryPointArnstringAn Amazon Resource Name (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)
BackupVaultAccountIdstringThe account ID of the specified backup vault.

SELECT examples

This request returns the minimal required set of metadata needed to start a restore job with secure default settings. BackupVaultName and RecoveryPointArn are required parameters. BackupVaultAccountId is an optional parameter.

SELECT
inferred_metadata
FROM aws.backup.restore_testing_inferred_metadatas
WHERE BackupVaultName = '{{ BackupVaultName }}' -- required
AND RecoveryPointArn = '{{ RecoveryPointArn }}' -- required
AND region = '{{ region }}' -- required
AND BackupVaultAccountId = '{{ BackupVaultAccountId }}'
;