Module Values.BrokerInstanceOptionSource

Option for host instance type.

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

    The list of available az.

    *)
  2. engineType : EngineType.t option;
    (*

    The broker's engine type.

    *)
  3. hostInstanceType : string option;
    (*

    The broker's instance type.

    *)
  4. storageType : BrokerStorageType.t option;
    (*

    The broker's storage type.

    *)
  5. supportedDeploymentModes : DeploymentMode.t list option;
    (*

    The list of supported deployment modes.

    *)
  6. supportedEngineVersions : string list option;
    (*

    The list of supported engine versions.

    *)
}
Sourceval make : ?availabilityZones:??? -> ?engineType:??? -> ?hostInstanceType:??? -> ?storageType:??? -> ?supportedDeploymentModes:??? -> ?supportedEngineVersions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `String of string | `Structure of (string * [> `String of string ]) list ] list | `String of string ]) 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