Module Values.EffectivePreferredResourceSource

Describes the effective preferred resources that Compute Optimizer considers as rightsizing recommendation candidates. Compute Optimizer only supports Amazon EC2 instance types.

Sourcetype nonrec t = {
  1. name : PreferredResourceName.t option;
    (*

    The name of the preferred resource list.

    *)
  2. includeList : PreferredResourceValues.t option;
    (*

    The list of preferred resource values that you want considered as rightsizing recommendation candidates.

    *)
  3. effectiveIncludeList : PreferredResourceValues.t option;
    (*

    The expanded version of your preferred resource's include list.

    *)
  4. excludeList : PreferredResourceValues.t option;
    (*

    The list of preferred resources values that you want excluded from rightsizing recommendation candidates.

    *)
}
Sourceval make : ?name:??? -> ?includeList:??? -> ?effectiveIncludeList:??? -> ?excludeList:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of PreferredResourceValue.t ] list ]) 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