Module Values_0.AIBenchmarkOutputResultSource

The output result of an AI benchmark job, including the Amazon S3 location and CloudWatch log information.

Sourcetype nonrec t = {
  1. s3OutputLocation : S3Uri.t option;
    (*

    The Amazon S3 URI where benchmark results are stored.

    *)
  2. cloudWatchLogs : AICloudWatchLogsList.t option;
    (*

    The CloudWatch log information for the benchmark job.

    *)
}
Sourceval make : ?s3OutputLocation:??? -> ?cloudWatchLogs:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of S3Uri.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