DocumentClassifierInputDataConfigAugmentedManifest constructor

const DocumentClassifierInputDataConfigAugmentedManifest({
  1. Input<String?>? annotationDataS3Uri,
  2. required Input<List<String>> attributeNames,
  3. Input<String?>? documentType,
  4. required Input<String> s3Uri,
  5. Input<String?>? sourceDocumentsS3Uri,
  6. Input<String?>? split,
})

Creates a new DocumentClassifierInputDataConfigAugmentedManifest. annotationDataS3Uri Location of annotation files. attributeNames The JSON attribute that contains the annotations for the training documents. documentType Type of augmented manifest. s3Uri Location of augmented manifest file. sourceDocumentsS3Uri Location of source PDF files. split Purpose of data in augmented manifest.

Implementation

const DocumentClassifierInputDataConfigAugmentedManifest({
  this.annotationDataS3Uri,
  required this.attributeNames,
  this.documentType,
  required this.s3Uri,
  this.sourceDocumentsS3Uri,
  this.split,
});