AWSRekognitionCreateDatasetRequest

Objective-C

@interface AWSRekognitionCreateDatasetRequest

Swift

class AWSRekognitionCreateDatasetRequest
  • The source files for the dataset. You can specify the ARN of an existing dataset or specify the Amazon S3 bucket location of an Amazon Sagemaker format manifest file. If you don’t specify datasetSource, an empty dataset is created. To add labeled images to the dataset, You can use the console or call UpdateDatasetEntries.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSRekognitionDatasetSource *_Nullable datasetSource;

    Swift

    var datasetSource: AWSRekognitionDatasetSource? { get set }
  • The type of the dataset. Specify TRAIN to create a training dataset. Specify TEST to create a test dataset.

    Declaration

    Objective-C

    @property (nonatomic) AWSRekognitionDatasetType datasetType;

    Swift

    var datasetType: AWSRekognitionDatasetType { get set }
  • The ARN of the Amazon Rekognition Custom Labels project to which you want to asssign the dataset.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable projectArn;

    Swift

    var projectArn: String? { get set }