Module Values_2.InferenceExperimentSummarySource

Lists a summary of properties of an inference experiment.

Sourcetype nonrec t = {
  1. name : Values_1.InferenceExperimentName.t option;
    (*

    The name of the inference experiment.

    *)
  2. type_ : Values_1.InferenceExperimentType.t option;
    (*

    The type of the inference experiment.

    *)
  3. schedule : Values_1.InferenceExperimentSchedule.t option;
    (*

    The duration for which the inference experiment ran or will run. The maximum duration that you can set for an inference experiment is 30 days.

    *)
  4. status : Values_1.InferenceExperimentStatus.t option;
    (*

    The status of the inference experiment.

    *)
  5. statusReason : Values_1.InferenceExperimentStatusReason.t option;
    (*

    The error message for the inference experiment status result.

    *)
  6. description : Values_1.InferenceExperimentDescription.t option;
    (*

    The description of the inference experiment.

    *)
  7. creationTime : Values_0.Timestamp.t option;
    (*

    The timestamp at which the inference experiment was created.

    *)
  8. completionTime : Values_0.Timestamp.t option;
    (*

    The timestamp at which the inference experiment was completed.

    *)
  9. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The timestamp when you last modified the inference experiment.

    *)
  10. roleArn : Values_0.RoleArn.t option;
    (*

    The ARN of the IAM role that Amazon SageMaker can assume to access model artifacts and container images, and manage Amazon SageMaker Inference endpoints for model deployment.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?schedule:??? -> ?status:??? -> ?statusReason:??? -> ?description:??? -> ?creationTime:??? -> ?completionTime:??? -> ?lastModifiedTime:??? -> ?roleArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.InferenceExperimentName.t | `Structure of (string * [> `Timestamp of Values_0.Timestamp.t ]) list | `Timestamp of Values_0.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