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

RestoreClusterFromSnapshotInput

import type { RestoreClusterFromSnapshotInput } from "https://aws-api.deno.dev/v0.4/services/docdbelastic.ts?docs=full";
interface RestoreClusterFromSnapshotInput {
clusterName: string;
kmsKeyId?: string | null;
snapshotArn: string;
subnetIds?: string[] | null;
tags?: {
[key: string]: string | null | undefined;
}
| null;
vpcSecurityGroupIds?: string[] | null;
}

§Properties

§
clusterName: string
[src]

The name of the Elastic DocumentDB cluster.

§
kmsKeyId?: string | null
[src]

The KMS key identifier to use to encrypt the new Elastic DocumentDB cluster.

The KMS key identifier is the Amazon Resource Name (ARN) for the KMS encryption key. If you are creating a cluster using the same Amazon account that owns this KMS encryption key, you can use the KMS key alias instead of the ARN as the KMS encryption key.

If an encryption key is not specified here, Elastic DocumentDB uses the default encryption key that KMS creates for your account. Your account has a different default encryption key for each Amazon Region.

§
snapshotArn: string
[src]

The arn of the Elastic DocumentDB snapshot.

§
subnetIds?: string[] | null
[src]

The Amazon EC2 subnet IDs for the Elastic DocumentDB cluster.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

A list of the tag names to be assigned to the restored DB cluster, in the form of an array of key-value pairs in which the key is the tag name and the value is the key value.

§
vpcSecurityGroupIds?: string[] | null
[src]

A list of EC2 VPC security groups to associate with the Elastic DocumentDB cluster.