Module Values.AvailabilityZoneInfoSource

Information about an Availability Zone on a domain.

Sourcetype nonrec t = {
  1. availabilityZoneName : AvailabilityZone.t option;
    (*

    The name of the Availability Zone.

    *)
  2. zoneStatus : ZoneStatus.t option;
    (*

    The current state of the Availability Zone. Current options are Active and StandBy. Active - Data nodes in the Availability Zone are in use. StandBy - Data nodes in the Availability Zone are in a standby state. NotAvailable - Unable to retrieve information.

    *)
  3. configuredDataNodeCount : NumberOfNodes.t option;
    (*

    The total number of data nodes configured in the Availability Zone.

    *)
  4. availableDataNodeCount : NumberOfNodes.t option;
    (*

    The number of data nodes active in the Availability Zone.

    *)
  5. totalShards : NumberOfShards.t option;
    (*

    The total number of primary and replica shards in the Availability Zone.

    *)
  6. totalUnAssignedShards : NumberOfShards.t option;
    (*

    The total number of primary and replica shards that aren't allocated to any of the nodes in the Availability Zone.

    *)
}
Sourceval make : ?availabilityZoneName:??? -> ?zoneStatus:??? -> ?configuredDataNodeCount:??? -> ?availableDataNodeCount:??? -> ?totalShards:??? -> ?totalUnAssignedShards:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AvailabilityZone.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