Module Values.ReservedElasticsearchInstanceOfferingSource

Details of a reserved Elasticsearch instance offering.

Sourcetype nonrec t = {
  1. reservedElasticsearchInstanceOfferingId : GUID.t option;
    (*

    The Elasticsearch reserved instance offering identifier.

    *)
  2. elasticsearchInstanceType : ESPartitionInstanceType.t option;
    (*

    The Elasticsearch instance type offered by the reserved instance offering.

    *)
  3. duration : Integer.t option;
    (*

    The duration, in seconds, for which the offering will reserve the Elasticsearch instance.

    *)
  4. fixedPrice : Double.t option;
    (*

    The upfront fixed charge you will pay to purchase the specific reserved Elasticsearch instance offering.

    *)
  5. usagePrice : Double.t option;
    (*

    The rate you are charged for each hour the domain that is using the offering is running.

    *)
  6. currencyCode : String_.t option;
    (*

    The currency code for the reserved Elasticsearch instance offering.

    *)
  7. paymentOption : ReservedElasticsearchInstancePaymentOption.t option;
    (*

    Payment option for the reserved Elasticsearch instance offering

    *)
  8. recurringCharges : RecurringChargeList.t option;
    (*

    The charge to your account regardless of whether you are creating any domains using the instance offering.

    *)
}
Sourceval make : ?reservedElasticsearchInstanceOfferingId:??? -> ?elasticsearchInstanceType:??? -> ?duration:??? -> ?fixedPrice:??? -> ?usagePrice:??? -> ?currencyCode:??? -> ?paymentOption:??? -> ?recurringCharges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Enum of string | `Integer of Integer.t | `List of [> `Structure of (string * [> `Double of Double.t | `String of String_.t ]) list ] list | `String of GUID.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