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

A data structure with information about any primary and secondary clusters associated with an Amazon DocumentDB global clusters.

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

§Properties

§
DBClusterArn?: string | null
[src]

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

§
IsWriter?: boolean | null
[src]

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

§
Readers: string[]
[src]

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