interface CreateDatasetRequest {
    ClientRequestToken?: string;
    DatasetName: undefined | string;
    DatasetType?: DatasetType;
    Description?: string;
    FlywheelArn: undefined | string;
    InputDataConfig: undefined | DatasetInputDataConfig;
    Tags?: Tag[];
}

Hierarchy (view full)

Properties

ClientRequestToken?: string

A unique identifier for the request. If you don't set the client request token, Amazon Comprehend generates one.

DatasetName: undefined | string

Name of the dataset.

DatasetType?: DatasetType

The dataset type. You can specify that the data in a dataset is for training the model or for testing the model.

Description?: string

Description of the dataset.

FlywheelArn: undefined | string

The Amazon Resource Number (ARN) of the flywheel of the flywheel to receive the data.

InputDataConfig: undefined | DatasetInputDataConfig

Information about the input data configuration. The type of input data varies based on the format of the input and whether the data is for a classifier model or an entity recognition model.

Tags?: Tag[]

Tags for the dataset.