Module Values.ReservedInstanceOfferingSource

Details of an OpenSearch Reserved Instance offering.

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

    The unique identifier of the Reserved Instance offering.

    *)
  2. instanceType : OpenSearchPartitionInstanceType.t option;
    (*

    The OpenSearch instance type offered by the Reserved Instance offering.

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

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

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

    The upfront fixed charge you will pay to purchase the specific Reserved Instance offering.

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

    The hourly rate at which you're charged for the domain using this Reserved Instance.

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

    The currency code for the Reserved Instance offering.

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

    Payment option for the Reserved Instance offering

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

    The recurring charge to your account, regardless of whether you creates any domains using the offering.

    *)
}
Sourceval make : ?reservedInstanceOfferingId:??? -> ?instanceType:??? -> ?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