Interface CfnDocumentClassifier.AugmentedManifestsListItemProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDocumentClassifier.AugmentedManifestsListItemProperty.Jsii$Proxy
Enclosing class:
CfnDocumentClassifier

@Stability(Stable) public static interface CfnDocumentClassifier.AugmentedManifestsListItemProperty extends software.amazon.jsii.JsiiSerializable
An augmented manifest file that provides training data for your custom model.

An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker Ground Truth.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.comprehend.*;
 AugmentedManifestsListItemProperty augmentedManifestsListItemProperty = AugmentedManifestsListItemProperty.builder()
         .attributeNames(List.of("attributeNames"))
         .s3Uri("s3Uri")
         // the properties below are optional
         .split("split")
         .build();
 

See Also: