Module Values_0.ReservedDBInstancesOfferingSource

This data type is used as a response element in the DescribeReservedDBInstancesOfferings action.

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

    The offering identifier.

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

    The DB instance class for the reserved DB instance.

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

    The duration of the offering in seconds.

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

    The fixed price charged for this offering.

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

    The hourly price charged for this offering.

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

    The currency code for the reserved DB instance offering.

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

    The database engine used by the offering.

    *)
  8. offeringType : String_.t option;
    (*

    The offering type.

    *)
  9. multiAZ : Boolean.t option;
    (*

    Indicates whether the offering applies to Multi-AZ deployments.

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

    The recurring price charged to run this reserved DB instance.

    *)
}
Sourceval make : ?reservedDBInstancesOfferingId:??? -> ?dBInstanceClass:??? -> ?duration:??? -> ?fixedPrice:??? -> ?usagePrice:??? -> ?currencyCode:??? -> ?productDescription:??? -> ?offeringType:??? -> ?multiAZ:??? -> ?recurringCharges:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Double of Double.t | `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