Values.InferenceEventSummarySourceContains information about the specific inference event, including start and end time, diagnostics information, event duration and so on.
type nonrec t = {inferenceSchedulerArn : InferenceSchedulerArn.t option;The Amazon Resource Name (ARN) of the inference scheduler being used for the inference event.
*)inferenceSchedulerName : InferenceSchedulerName.t option;The name of the inference scheduler being used for the inference events.
*)eventStartTime : Timestamp.t option;Indicates the starting time of an inference event.
*)eventEndTime : Timestamp.t option;Indicates the ending time of an inference event.
*)diagnostics : ModelMetrics.t option;An array which specifies the names and values of all sensors contributing to an inference event.
*)eventDurationInSeconds : EventDurationInSeconds.t option;Indicates the size of an inference event in seconds.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of EventDurationInSeconds.t
| `String of InferenceSchedulerArn.t
| `Timestamp of Timestamp.t ])
list ]