Module Values_0.ReservedDBInstanceSource

This data type is used as a response element in the DescribeReservedDBInstances and PurchaseReservedDBInstancesOffering actions.

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

    The unique identifier for the reservation.

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

    The offering identifier.

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

    The DB instance class for the reserved DB instance.

    *)
  4. startTime : TStamp.t option;
    (*

    The time the reservation started.

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

    The duration of the reservation in seconds.

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

    The fixed price charged for this reserved DB instance.

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

    The hourly price charged for this reserved DB instance.

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

    The currency code for the reserved DB instance.

    *)
  9. dBInstanceCount : Integer.t option;
    (*

    The number of reserved DB instances.

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

    The description of the reserved DB instance.

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

    The offering type of this reserved DB instance.

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

    Indicates whether the reservation applies to Multi-AZ deployments.

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

    The state of the reserved DB instance.

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

    The recurring price charged to run this reserved DB instance.

    *)
  15. reservedDBInstanceArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) for the reserved DB instance.

    *)
  16. leaseId : String_.t option;
    (*

    The unique identifier for the lease associated with the reserved DB instance. Amazon Web Services Support might request the lease ID for an issue related to a reserved DB instance.

    *)
}
Sourceval make : ?reservedDBInstanceId:??? -> ?reservedDBInstancesOfferingId:??? -> ?dBInstanceClass:??? -> ?startTime:??? -> ?duration:??? -> ?fixedPrice:??? -> ?usagePrice:??? -> ?currencyCode:??? -> ?dBInstanceCount:??? -> ?productDescription:??? -> ?offeringType:??? -> ?multiAZ:??? -> ?state:??? -> ?recurringCharges:??? -> ?reservedDBInstanceArn:??? -> ?leaseId:??? -> 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 | `Timestamp of TStamp.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