Module Values.GlobalClusterMemberSource

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

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

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

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

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

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

    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.

    *)
}
Sourceval make : ?dBClusterArn:??? -> ?readers:??? -> ?isWriter:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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