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

ModifyGlobalClusterMessage

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

Represents the input to "ModifyGlobalCluster".

interface ModifyGlobalClusterMessage {
DeletionProtection?: boolean | null;
GlobalClusterIdentifier: string;
NewGlobalClusterIdentifier?: string | null;
}

§Properties

§
DeletionProtection?: boolean | null
[src]

Indicates if the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.

§
GlobalClusterIdentifier: string
[src]

The identifier for the global cluster being modified. This parameter isn't case-sensitive.

Constraints:

  • Must match the identifier of an existing global cluster.
§
NewGlobalClusterIdentifier?: string | null
[src]

The new identifier for a global cluster when you modify a global cluster. This value is stored as a lowercase string.

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

Example: my-cluster2