Module Values.CustomizableMetricParametersSource

Defines the various metric parameters that can be customized, such as threshold and headroom.

Sourcetype nonrec t = {
  1. threshold : CustomizableMetricThreshold.t option;
    (*

    The threshold value used for the specified metric parameter. You can only specify the threshold value for CPU utilization.

    *)
  2. headroom : CustomizableMetricHeadroom.t option;
    (*

    The headroom value in percentage used for the specified metric parameter. The following lists the valid values for CPU and memory utilization. CPU utilization: PERCENT_30 | PERCENT_20 | PERCENT_0 Memory utilization: PERCENT_30 | PERCENT_20 | PERCENT_10

    *)
}
Sourceval make : ?threshold:??? -> ?headroom:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string ]) 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