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/neptune.ts?docs=full";

Contains the details of an Amazon Neptune global database.

This data type is used as a response element for the "CreateGlobalCluster", "DescribeGlobalClusters", "ModifyGlobalCluster", "DeleteGlobalCluster", "FailoverGlobalCluster", and "RemoveFromGlobalCluster" actions.

interface GlobalCluster {
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

§
DeletionProtection?: boolean | null
[src]

The deletion protection setting for the global database.

§
Engine?: string | null
[src]

The Neptune database engine used by the global database ("neptune").

§
EngineVersion?: string | null
[src]

The Neptune engine version used by the global database.

§
GlobalClusterArn?: string | null
[src]

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

§
GlobalClusterIdentifier?: string | null
[src]

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

§
GlobalClusterMembers: GlobalClusterMember[]
[src]

A list of cluster ARNs and instance ARNs for all the DB clusters that are part of the global database.

§
GlobalClusterResourceId?: string | null
[src]

An immutable identifier for the global database that is unique within in all regions. This identifier is found in CloudTrail log entries whenever the KMS key for the DB cluster is accessed.

§
Status?: string | null
[src]

Specifies the current state of this global database.

§
StorageEncrypted?: boolean | null
[src]

The storage encryption setting for the global database.