Module Values.OrderableDBInstanceOptionSource

The options that are available for an instance.

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

    The engine type of an instance.

    *)
  2. engineVersion : String_.t option;
    (*

    The engine version of an instance.

    *)
  3. dBInstanceClass : String_.t option;
    (*

    The instance class for an instance.

    *)
  4. licenseModel : String_.t option;
    (*

    The license model for an instance.

    *)
  5. availabilityZones : AvailabilityZoneList.t option;
    (*

    A list of Availability Zones for an instance.

    *)
  6. vpc : Boolean.t option;
    (*

    Indicates whether an instance is in a virtual private cloud (VPC).

    *)
  7. storageType : String_.t option;
    (*

    The storage type to associate with the DB cluster

    *)
}
Sourceval make : ?engine:??? -> ?engineVersion:??? -> ?dBInstanceClass:??? -> ?licenseModel:??? -> ?availabilityZones:??? -> ?vpc:??? -> ?storageType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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