Module Values_0.GlobalClusterMemberSource

A data structure with information about any primary and secondary clusters associated with a global cluster (Aurora global database).

Sourcetype nonrec t = {
  1. dBClusterArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for each Aurora DB cluster in the global cluster.

    *)
  2. readers : ReadersArnList.t option;
    (*

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

    *)
  3. isWriter : Boolean.t option;
    (*

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

    *)
  4. globalWriteForwardingStatus : WriteForwardingStatus.t option;
    (*

    The status of write forwarding for a secondary cluster in the global cluster.

    *)
  5. synchronizationStatus : GlobalClusterMemberSynchronizationStatus.t option;
    (*

    The status of synchronization of each Aurora DB cluster in the global cluster.

    *)
}
Sourceval make : ?dBClusterArn:??? -> ?readers:??? -> ?isWriter:??? -> ?globalWriteForwardingStatus:??? -> ?synchronizationStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t