Interface CfnDocumentClassifier.DocumentClassifierOutputDataConfigProperty

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

@Stability(Stable) public static interface CfnDocumentClassifier.DocumentClassifierOutputDataConfigProperty extends software.amazon.jsii.JsiiSerializable
Provide the location for output data from a custom classifier job.

This field is mandatory if you are training a native document 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.*;
 DocumentClassifierOutputDataConfigProperty documentClassifierOutputDataConfigProperty = DocumentClassifierOutputDataConfigProperty.builder()
         .kmsKeyId("kmsKeyId")
         .s3Uri("s3Uri")
         .build();
 

See Also: