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

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

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

§Properties

§
DBClusterArn?: string | null
[src]

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

§
GlobalWriteForwardingStatus?: WriteForwardingStatus | null
[src]

Specifies whether a secondary cluster in an Aurora global database has write forwarding enabled, not enabled, or is in the process of enabling it.

§
IsWriter?: boolean | null
[src]

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

§
Readers: string[]
[src]

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