Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RestoreFromSnapshotRequest

import type { RestoreFromSnapshotRequest } from "https://aws-api.deno.dev/v0.4/services/redshiftserverless.ts?docs=full";
interface RestoreFromSnapshotRequest {
namespaceName: string;
ownerAccount?: string | null;
snapshotArn?: string | null;
snapshotName?: string | null;
workgroupName: string;
}

§Properties

§
namespaceName: string
[src]

The name of the namespace to restore the snapshot to.

§
ownerAccount?: string | null
[src]

The Amazon Web Services account that owns the snapshot.

§
snapshotArn?: string | null
[src]

The Amazon Resource Name (ARN) of the snapshot to restore from. Required if restoring from Amazon Redshift Serverless to a provisioned cluster. Must not be specified at the same time as snapshotName.

The format of the ARN is arn:aws:redshift::<account_id>:snapshot:<cluster_identifier>/<snapshot_identifier>.

§
snapshotName?: string | null
[src]

The name of the snapshot to restore from. Must not be specified at the same time as snapshotArn.

§
workgroupName: string
[src]

The name of the workgroup used to restore the snapshot.