interface DocumentClassifierDocumentsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Comprehend.CfnDocumentClassifierPropsMixin.DocumentClassifierDocumentsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscomprehend#CfnDocumentClassifierPropsMixin_DocumentClassifierDocumentsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.comprehend.CfnDocumentClassifierPropsMixin.DocumentClassifierDocumentsProperty |
Python | aws_cdk.cfn_property_mixins.aws_comprehend.CfnDocumentClassifierPropsMixin.DocumentClassifierDocumentsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_comprehend » 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 { aws_comprehend as comprehend } from '@aws-cdk/cfn-property-mixins';
const documentClassifierDocumentsProperty: comprehend.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