Skip to main content

restore_job_metadatas

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

Overview

Namerestore_job_metadatas
TypeResource
Idaws.backup.restore_job_metadatas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
metadataobjectThis contains the metadata of the specified backup job.
restore_job_idstringThis is a unique identifier of a restore job within Backup.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_restore_job_metadataselectrestore_job_id, regionThis request returns the metadata for the specified restore job.

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
regionstringAWS region (default: us-east-1)
restore_job_idstringThis is a unique identifier of a restore job within Backup.

SELECT examples

This request returns the metadata for the specified restore job.

SELECT
metadata,
restore_job_id
FROM aws.backup.restore_job_metadatas
WHERE restore_job_id = '{{ restore_job_id }}' -- required
AND region = '{{ region }}' -- required
;