Module Values.ESInstanceDetailsSource

Details about the Amazon OpenSearch Service reservations that Amazon Web Services recommends that you purchase.

Sourcetype nonrec t = {
  1. instanceClass : GenericString.t option;
    (*

    The class of instance that Amazon Web Services recommends.

    *)
  2. instanceSize : GenericString.t option;
    (*

    The size of instance that Amazon Web Services recommends.

    *)
  3. region : GenericString.t option;
    (*

    The Amazon Web Services Region of the recommended reservation.

    *)
  4. currentGeneration : GenericBoolean.t option;
    (*

    Determines whether the recommendation is for a current-generation instance.

    *)
  5. sizeFlexEligible : GenericBoolean.t option;
    (*

    Determines whether the recommended reservation is size flexible.

    *)
}
Sourceval make : ?instanceClass:??? -> ?instanceSize:??? -> ?region:??? -> ?currentGeneration:??? -> ?sizeFlexEligible:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of GenericBoolean.t | `String of GenericString.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