restore_testing_inferred_metadatas
Creates, updates, deletes, gets or lists a restore_testing_inferred_metadatas resource.
Overview
| Name | restore_testing_inferred_metadatas |
| Type | Resource |
| Id | aws.backup.restore_testing_inferred_metadatas |
Fields
The following fields are returned by SELECT queries:
- get_restore_testing_inferred_metadata
| Name | Datatype | Description |
|---|---|---|
inferred_metadata | object | This is a string map of the metadata inferred from the request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_restore_testing_inferred_metadata | select | BackupVaultName, RecoveryPointArn, region | BackupVaultAccountId | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
BackupVaultName | string | The 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. |
RecoveryPointArn | string | An 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. |
region | string | AWS region (default: us-east-1) |
BackupVaultAccountId | string | The account ID of the specified backup vault. |
SELECT examples
- get_restore_testing_inferred_metadata
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 }}'
;