Module Values.RDSInstanceDetailsSource

Details about the Amazon RDS reservations that Amazon Web Services recommends that you purchase.

Sourcetype nonrec t = {
  1. family : GenericString.t option;
    (*

    The instance family of the recommended reservation.

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

    The type of instance that Amazon Web Services recommends.

    *)
  3. region : GenericString.t option;
    (*

    The Amazon Web Services Region of the recommended reservation.

    *)
  4. databaseEngine : GenericString.t option;
    (*

    The database engine that the recommended reservation supports.

    *)
  5. databaseEdition : GenericString.t option;
    (*

    The database edition that the recommended reservation supports.

    *)
  6. deploymentOption : GenericString.t option;
    (*

    Determines whether the recommendation is for a reservation in a single Availability Zone or a reservation with a backup in a second Availability Zone.

    *)
  7. licenseModel : GenericString.t option;
    (*

    The license model that the recommended reservation supports.

    *)
  8. currentGeneration : GenericBoolean.t option;
    (*

    Determines whether the recommendation is for a current-generation instance.

    *)
  9. sizeFlexEligible : GenericBoolean.t option;
    (*

    Determines whether the recommended reservation is size flexible.

    *)
  10. deploymentModel : GenericString.t option;
    (*

    Determines whether the recommendation is for a reservation for RDS Custom.

    *)
}
Sourceval make : ?family:??? -> ?instanceType:??? -> ?region:??? -> ?databaseEngine:??? -> ?databaseEdition:??? -> ?deploymentOption:??? -> ?licenseModel:??? -> ?currentGeneration:??? -> ?sizeFlexEligible:??? -> ?deploymentModel:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of GenericBoolean.t | `String of GenericString.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