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

GlobalCluster

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

A data type representing an Amazon DocumentDB global cluster.

interface GlobalCluster {
DatabaseName?: string | null;
DeletionProtection?: boolean | null;
Engine?: string | null;
EngineVersion?: string | null;
GlobalClusterArn?: string | null;
GlobalClusterIdentifier?: string | null;
GlobalClusterMembers: GlobalClusterMember[];
GlobalClusterResourceId?: string | null;
Status?: string | null;
StorageEncrypted?: boolean | null;
}

§Properties

§
DatabaseName?: string | null
[src]

The default database name within the new global cluster.

§
DeletionProtection?: boolean | null
[src]

The deletion protection setting for the new global cluster.

§
Engine?: string | null
[src]

The Amazon DocumentDB database engine used by the global cluster.

§
EngineVersion?: string | null
[src]

Indicates the database engine version.

§
GlobalClusterArn?: string | null
[src]

The Amazon Resource Name (ARN) for the global cluster.

§
GlobalClusterIdentifier?: string | null
[src]

Contains a user-supplied global cluster identifier. This identifier is the unique key that identifies a global cluster.

§
GlobalClusterMembers: GlobalClusterMember[]
[src]

The list of cluster IDs for secondary clusters within the global cluster. Currently limited to one item.

§
GlobalClusterResourceId?: string | null
[src]

The Amazon Web Services Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS customer master key (CMK) for the cluster is accessed.

§
Status?: string | null
[src]

Specifies the current state of this global cluster.

§
StorageEncrypted?: boolean | null
[src]

The storage encryption setting for the global cluster.