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

GlobalClusterMember

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

A data structure with information about any primary and secondary clusters associated with an Neptune global database.

interface GlobalClusterMember {
DBClusterArn?: string | null;
IsWriter?: boolean | null;
Readers: string[];
}

§Properties

§
DBClusterArn?: string | null
[src]

The Amazon Resource Name (ARN) for each Neptune cluster.

§
IsWriter?: boolean | null
[src]

Specifies whether the Neptune cluster is the primary cluster (that is, has read-write capability) for the Neptune global database with which it is associated.

§
Readers: string[]
[src]

The Amazon Resource Name (ARN) for each read-only secondary cluster associated with the Neptune global database.