Module Values.GlobalClusterMemberSource

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

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

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

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

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

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

    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.

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

    The status of synchronization of each Amazon DocumentDB cluster in the global cluster.

    *)
}
Sourceval make : ?dBClusterArn:??? -> ?readers:??? -> ?isWriter:??? -> ?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