Module Values.CancelTrainedModelRequestSource

Submits a request to cancel the trained model job.

Sourcetype nonrec t = {
  1. membershipIdentifier : UUID.t;
    (*

    The membership ID of the trained model job that you want to cancel.

    *)
  2. trainedModelArn : TrainedModelArn.t;
    (*

    The Amazon Resource Name (ARN) of the trained model job that you want to cancel.

    *)
  3. versionIdentifier : UUID.t option;
    (*

    The version identifier of the trained model to cancel. This parameter allows you to specify which version of the trained model you want to cancel when multiple versions exist. If versionIdentifier is not specified, the base model will be cancelled.

    *)
}
Sourceval context_ : string
Sourceval make : ?versionIdentifier:??? -> membershipIdentifier:UUID.t -> trainedModelArn:TrainedModelArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of UUID.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