Module Values.StartTrainedModelExportJobRequestSource

Provides the information necessary to start a trained model export job.

Sourcetype nonrec t = {
  1. name : NameString.t;
    (*

    The name of the trained model export job.

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

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

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

    The version identifier of the trained model to export. This specifies which version of the trained model should be exported to the specified destination.

    *)
  4. membershipIdentifier : UUID.t;
    (*

    The membership ID of the member that is receiving the exported trained model artifacts.

    *)
  5. outputConfiguration : TrainedModelExportOutputConfiguration.t;
    (*

    The output configuration information for the trained model export job.

    *)
  6. description : ResourceDescription.t option;
    (*

    The description of the trained model export job.

    *)
}
Sourceval context_ : string
Sourceval make : ?trainedModelVersionIdentifier:??? -> ?description:??? -> name:NameString.t -> trainedModelArn:TrainedModelArn.t -> membershipIdentifier:UUID.t -> outputConfiguration:TrainedModelExportOutputConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NameString.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of AccountId.t ]) list ] list ]) list ]) 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