Module Values_1.ModelLatencyThresholdSource

The model latency threshold.

Sourcetype nonrec t = {
  1. percentile : Values_0.String64.t option;
    (*

    The model latency percentile threshold. Acceptable values are P95 and P99. For custom load tests, specify the value as P95.

    *)
  2. valueInMilliseconds : Values_0.Integer.t option;
    (*

    The model latency percentile value in milliseconds.

    *)
}
Sourceval make : ?percentile:??? -> ?valueInMilliseconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of Values_0.String64.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