Module Values.RecommendationSettingsSource

Provides information about the required target engine settings.

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

    The size of your target instance. Fleet Advisor calculates this value based on your data collection type, such as total capacity and resource utilization. Valid values include "total-capacity" and "utilization".

    *)
  2. workloadType : String_.t;
    (*

    The deployment option for your target engine. For production databases, Fleet Advisor chooses Multi-AZ deployment. For development or test databases, Fleet Advisor chooses Single-AZ deployment. Valid values include "development" and "production".

    *)
}
Sourceval context_ : string
Sourceval make : instanceSizingType:String_.t -> workloadType:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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