Module Values.ImportModelVersionRequestSource

Imports a model that has been trained successfully.

Sourcetype nonrec t = {
  1. sourceModelVersionArn : ModelVersionArn.t;
    (*

    The Amazon Resource Name (ARN) of the model version to import.

    *)
  2. modelName : ModelName.t option;
    (*

    The name for the machine learning model to be created. If the model already exists, Amazon Lookout for Equipment creates a new version. If you do not specify this field, it is filled with the name of the source model.

    *)
  3. datasetName : DatasetIdentifier.t;
    (*

    The name of the dataset for the machine learning model being imported.

    *)
  4. labelsInputConfiguration : LabelsInputConfiguration.t option;
  5. clientToken : IdempotenceToken.t;
    (*

    A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment generates one.

    *)
  6. roleArn : IamRoleArn.t option;
    (*

    The Amazon Resource Name (ARN) of a role with permission to access the data source being used to create the machine learning model.

    *)
  7. serverSideKmsKeyId : NameOrArn.t option;
    (*

    Provides the identifier of the KMS key key used to encrypt model data by Amazon Lookout for Equipment.

    *)
  8. tags : TagList.t option;
    (*

    The tags associated with the machine learning model to be created.

    *)
  9. inferenceDataImportStrategy : InferenceDataImportStrategy.t option;
    (*

    Indicates how to import the accumulated inference data when a model version is imported. The possible values are as follows: NO_IMPORT – Don't import the data. ADD_WHEN_EMPTY – Only import the data from the source model if there is no existing data in the target model. OVERWRITE – Import the data from the source model and overwrite the existing data in the target model.

    *)
}
Sourceval context_ : string
Sourceval make : ?modelName:??? -> ?labelsInputConfiguration:??? -> ?roleArn:??? -> ?serverSideKmsKeyId:??? -> ?tags:??? -> ?inferenceDataImportStrategy:??? -> sourceModelVersionArn:ModelVersionArn.t -> datasetName:DatasetIdentifier.t -> clientToken:IdempotenceToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ModelVersionArn.t | `Structure of (string * [> `String of LabelGroupName.t | `Structure of (string * [> `String of S3Bucket.t ]) 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