Skip to main content

workspace_snapshots

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

Overview

Nameworkspace_snapshots
TypeResource
Idaws.workspaces.workspace_snapshots

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
rebuild_snapshotsarrayInformation about the snapshots that can be used to rebuild a WorkSpace. These snapshots include the user volume.
restore_snapshotsarrayInformation about the snapshots that can be used to restore a WorkSpace. These snapshots include both the root volume and the user volume.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_workspace_snapshotsselectregionDescribes the snapshots for the specified WorkSpace.

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)

SELECT examples

Describes the snapshots for the specified WorkSpace.

SELECT
rebuild_snapshots,
restore_snapshots
FROM aws.workspaces.workspace_snapshots
WHERE region = '{{ region }}' -- required
;