Module Values_0.AIBenchmarkJobSummarySource

Summary information about an AI benchmark job.

Sourcetype nonrec t = {
  1. aIBenchmarkJobName : AIEntityName.t option;
    (*

    The name of the benchmark job.

    *)
  2. aIBenchmarkJobArn : AIBenchmarkJobArn.t option;
    (*

    The Amazon Resource Name (ARN) of the benchmark job.

    *)
  3. aIBenchmarkJobStatus : AIBenchmarkJobStatus.t option;
    (*

    The status of the benchmark job.

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

    A timestamp that indicates when the benchmark job was created.

    *)
  5. endTime : Timestamp.t option;
    (*

    A timestamp that indicates when the benchmark job completed.

    *)
  6. aIWorkloadConfigName : AIEntityName.t option;
    (*

    The name of the AI workload configuration used by the benchmark job.

    *)
}
Sourceval make : ?aIBenchmarkJobName:??? -> ?aIBenchmarkJobArn:??? -> ?aIBenchmarkJobStatus:??? -> ?creationTime:??? -> ?endTime:??? -> ?aIWorkloadConfigName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AIEntityName.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