Module Values.ImportDatasetRequestSource

Imports a dataset.

Sourcetype nonrec t = {
  1. sourceDatasetArn : DatasetArn.t;
    (*

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

    *)
  2. datasetName : DatasetName.t option;
    (*

    The name of the machine learning dataset to be created. If the dataset already exists, Amazon Lookout for Equipment overwrites the existing dataset. If you don't specify this field, it is filled with the name of the source dataset.

    *)
  3. clientToken : IdempotenceToken.t;
    (*

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

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

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

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

    Any tags associated with the dataset to be created.

    *)
}
Sourceval context_ : string
Sourceval make : ?datasetName:??? -> ?serverSideKmsKeyId:??? -> ?tags:??? -> sourceDatasetArn:DatasetArn.t -> clientToken:IdempotenceToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of DatasetArn.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