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

DeleteDBClusterMessage

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

Represents the input to "DeleteDBCluster".

interface DeleteDBClusterMessage {
DBClusterIdentifier: string;
FinalDBSnapshotIdentifier?: string | null;
SkipFinalSnapshot?: boolean | null;
}

§Properties

§
DBClusterIdentifier: string
[src]

The cluster identifier for the cluster to be deleted. This parameter isn't case sensitive.

Constraints:

  • Must match an existing DBClusterIdentifier.
§
FinalDBSnapshotIdentifier?: string | null
[src]

The cluster snapshot identifier of the new cluster snapshot created when SkipFinalSnapshot is set to false.

Note: Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.

Constraints:

  • Must be from 1 to 255 letters, numbers, or hyphens.
  • The first character must be a letter.
  • Cannot end with a hyphen or contain two consecutive hyphens.
§
SkipFinalSnapshot?: boolean | null
[src]

Determines whether a final cluster snapshot is created before the cluster is deleted. If true is specified, no cluster snapshot is created. If false is specified, a cluster snapshot is created before the DB cluster is deleted.

Note: If SkipFinalSnapshot is false, you must specify a FinalDBSnapshotIdentifier parameter.

Default: false