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

CreateDBClusterSnapshotMessage

import type { CreateDBClusterSnapshotMessage } from "https://aws-api.deno.dev/v0.4/services/docdb.ts?docs=full";

Represents the input of "CreateDBClusterSnapshot".

interface CreateDBClusterSnapshotMessage {
DBClusterIdentifier: string;
DBClusterSnapshotIdentifier: string;
Tags?: Tag[] | null;
}

§Properties

§
DBClusterIdentifier: string
[src]

The identifier of the cluster to create a snapshot for. This parameter is not case sensitive.

Constraints:

  • Must match the identifier of an existing DBCluster.

Example: my-cluster

§
DBClusterSnapshotIdentifier: string
[src]

The identifier of the cluster snapshot. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.
  • The first character must be a letter.
  • Cannot end with a hyphen or contain two consecutive hyphens.

Example: my-cluster-snapshot1

§
Tags?: Tag[] | null
[src]

The tags to be assigned to the cluster snapshot.