Module Values_1.RecommendationJobStoppingConditionsSource

Specifies conditions for stopping a job. When a job reaches a stopping condition limit, SageMaker ends the job.

Sourcetype nonrec t = {
  1. maxInvocations : Values_0.Integer.t option;
    (*

    The maximum number of requests per minute expected for the endpoint.

    *)
  2. modelLatencyThresholds : ModelLatencyThresholds.t option;
    (*

    The interval of time taken by a model to respond as viewed from SageMaker. The interval includes the local communication time taken to send the request and to fetch the response from the container of a model and the time taken to complete the inference in the container.

    *)
  3. flatInvocations : FlatInvocations.t option;
    (*

    Stops a load test when the number of invocations (TPS) peaks and flattens, which means that the instance has reached capacity. The default value is Stop. If you want the load test to continue after invocations have flattened, set the value to Continue.

    *)
}
Sourceval make : ?maxInvocations:??? -> ?modelLatencyThresholds:??? -> ?flatInvocations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `List of [> `Structure of (string * [> `Integer of Values_0.Integer.t | `String of Values_0.String64.t ]) list ] 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