Module Values.ReservedElasticsearchInstanceSource

Details of a reserved Elasticsearch instance.

Sourcetype nonrec t = {
  1. reservationName : ReservationToken.t option;
    (*

    The customer-specified identifier to track this reservation.

    *)
  2. reservedElasticsearchInstanceId : GUID.t option;
    (*

    The unique identifier for the reservation.

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

    The offering identifier.

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

    The Elasticsearch instance type offered by the reserved instance offering.

    *)
  5. startTime : UpdateTimestamp.t option;
    (*

    The time the reservation started.

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

    The duration, in seconds, for which the Elasticsearch instance is reserved.

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

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

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

    The rate you are charged for each hour for the domain that is using this reserved instance.

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

    The currency code for the reserved Elasticsearch instance offering.

    *)
  10. elasticsearchInstanceCount : Integer.t option;
    (*

    The number of Elasticsearch instances that have been reserved.

    *)
  11. state : String_.t option;
    (*

    The state of the reserved Elasticsearch instance.

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

    The payment option as defined in the reserved Elasticsearch instance offering.

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

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

    *)
}
Sourceval make : ?reservationName:??? -> ?reservedElasticsearchInstanceId:??? -> ?reservedElasticsearchInstanceOfferingId:??? -> ?elasticsearchInstanceType:??? -> ?startTime:??? -> ?duration:??? -> ?fixedPrice:??? -> ?usagePrice:??? -> ?currencyCode:??? -> ?elasticsearchInstanceCount:??? -> ?state:??? -> ?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 ReservationToken.t | `Timestamp of UpdateTimestamp.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