Module Values.SecondaryClusterInfoSource

The AvailabilityZone and ClusterNodes information of the secondary compute unit.

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

    The name of the Availability Zone in which the secondary compute unit of the cluster is located.

    *)
  2. clusterNodes : ClusterNodesList.t option;
    (*

    The nodes in the secondary compute unit.

    *)
}
Sourceval make : ?availabilityZone:??? -> ?clusterNodes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] 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