Skip to content

Create Dataset

lookoutequipment_create_dataset R Documentation

Creates a container for a collection of data being ingested for analysis

Description

Creates a container for a collection of data being ingested for analysis. The dataset contains the metadata describing where the data is and what the data actually looks like. For example, it contains the location of the data source, the data schema, and other information. A dataset also contains any tags associated with the ingested data.

Usage

lookoutequipment_create_dataset(DatasetName, DatasetSchema,
  ServerSideKmsKeyId, ClientToken, Tags)

Arguments

DatasetName

[required] The name of the dataset being created.

DatasetSchema

A JSON description of the data that is in each time series dataset, including names, column names, and data types.

ServerSideKmsKeyId

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

ClientToken

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

Tags

Any tags associated with the ingested data described in the dataset.

Value

A list with the following syntax:

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

Request syntax

svc$create_dataset(
  DatasetName = "string",
  DatasetSchema = list(
    InlineDataSchema = "string"
  ),
  ServerSideKmsKeyId = "string",
  ClientToken = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)