AWSComprehendCreateDatasetRequest
Objective-C
@interface AWSComprehendCreateDatasetRequest
Swift
class AWSComprehendCreateDatasetRequest
-
A unique identifier for the request. If you don’t set the client request token, Amazon Comprehend generates one.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable clientRequestToken;
Swift
var clientRequestToken: String? { get set }
-
Name of the dataset.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable datasetName;
Swift
var datasetName: String? { get set }
-
The dataset type. You can specify that the data in a dataset is for training the model or for testing the model.
Declaration
Objective-C
@property (nonatomic) AWSComprehendDatasetType datasetType;
Swift
var datasetType: AWSComprehendDatasetType { get set }
-
Description of the dataset.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable detail;
Swift
var detail: String? { get set }
-
The Amazon Resource Number (ARN) of the flywheel of the flywheel to receive the data.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable flywheelArn;
Swift
var flywheelArn: String? { get set }
-
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.
Declaration
Objective-C
@property (nonatomic, strong) AWSComprehendDatasetInputDataConfig *_Nullable inputDataConfig;
Swift
var inputDataConfig: AWSComprehendDatasetInputDataConfig? { get set }
-
Tags for the dataset.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSComprehendTag *> *_Nullable tags;
Swift
var tags: [AWSComprehendTag]? { get set }