interface DocumentClassifierDocumentsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Comprehend.Mixins.CfnDocumentClassifierPropsMixin.DocumentClassifierDocumentsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscomprehend/mixins#CfnDocumentClassifierPropsMixin_DocumentClassifierDocumentsProperty |
Java | software.amazon.awscdk.mixins.preview.services.comprehend.mixins.CfnDocumentClassifierPropsMixin.DocumentClassifierDocumentsProperty |
Python | aws_cdk.mixins_preview.aws_comprehend.mixins.CfnDocumentClassifierPropsMixin.DocumentClassifierDocumentsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_comprehend » mixins » CfnDocumentClassifierPropsMixin » DocumentClassifierDocumentsProperty |
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 { mixins as comprehend_mixins } from '@aws-cdk/mixins-preview/aws-comprehend';
const documentClassifierDocumentsProperty: comprehend_mixins.CfnDocumentClassifierPropsMixin.DocumentClassifierDocumentsProperty = {
s3Uri: 's3Uri',
testS3Uri: 'testS3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The S3 URI location of the training documents specified in the S3Uri CSV file. |
| test | string | The S3 URI location of the test documents included in the TestS3Uri CSV file. |
s3Uri?
Type:
string
(optional)
The S3 URI location of the training documents specified in the S3Uri CSV file.
testS3Uri?
Type:
string
(optional)
The S3 URI location of the test documents included in the TestS3Uri CSV file.
This field is not required if you do not specify a test CSV file.

.NET
Go
Java
Python
TypeScript