Interface CfnDocumentClassifier.DocumentClassifierDocumentsProperty

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

@Stability(Stable) public static interface CfnDocumentClassifier.DocumentClassifierDocumentsProperty extends software.amazon.jsii.JsiiSerializable
The location of the training documents.

This parameter is required in a request to create a semi-structured document classification model.

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.*;
 DocumentClassifierDocumentsProperty documentClassifierDocumentsProperty = DocumentClassifierDocumentsProperty.builder()
         .s3Uri("s3Uri")
         // the properties below are optional
         .testS3Uri("testS3Uri")
         .build();
 

See Also: