Skip to content

Import Dataset

lookoutequipment_import_dataset R Documentation

Imports a dataset

Description

Imports a dataset.

Usage

lookoutequipment_import_dataset(SourceDatasetArn, DatasetName,
  ClientToken, ServerSideKmsKeyId, Tags)

Arguments

SourceDatasetArn

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

DatasetName

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.

ClientToken

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

ServerSideKmsKeyId

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

Tags

Any tags associated with the dataset to be created.

Value

A list with the following syntax:

list(
  DatasetName = "string",
  DatasetArn = "string",
  Status = "CREATED"|"INGESTION_IN_PROGRESS"|"ACTIVE"|"IMPORT_IN_PROGRESS",
  JobId = "string"
)

Request syntax

svc$import_dataset(
  SourceDatasetArn = "string",
  DatasetName = "string",
  ClientToken = "string",
  ServerSideKmsKeyId = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)