Module Values.InferenceEventSummarySource

Contains information about the specific inference event, including start and end time, diagnostics information, event duration and so on.

Sourcetype nonrec t = {
  1. inferenceSchedulerArn : InferenceSchedulerArn.t option;
    (*

    The Amazon Resource Name (ARN) of the inference scheduler being used for the inference event.

    *)
  2. inferenceSchedulerName : InferenceSchedulerName.t option;
    (*

    The name of the inference scheduler being used for the inference events.

    *)
  3. eventStartTime : Timestamp.t option;
    (*

    Indicates the starting time of an inference event.

    *)
  4. eventEndTime : Timestamp.t option;
    (*

    Indicates the ending time of an inference event.

    *)
  5. diagnostics : ModelMetrics.t option;
    (*

    An array which specifies the names and values of all sensors contributing to an inference event.

    *)
  6. eventDurationInSeconds : EventDurationInSeconds.t option;
    (*

    Indicates the size of an inference event in seconds.

    *)
}
Sourceval make : ?inferenceSchedulerArn:??? -> ?inferenceSchedulerName:??? -> ?eventStartTime:??? -> ?eventEndTime:??? -> ?diagnostics:??? -> ?eventDurationInSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of EventDurationInSeconds.t | `String of InferenceSchedulerArn.t | `Timestamp of Timestamp.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