aws-cdk-lib.aws_comprehend.CfnDocumentClassifier.DocumentClassifierDocumentsProperty

interface DocumentClassifierDocumentsProperty

LanguageType name
.NETAmazon.CDK.AWS.Comprehend.CfnDocumentClassifier.DocumentClassifierDocumentsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscomprehend#CfnDocumentClassifier_DocumentClassifierDocumentsProperty
Javasoftware.amazon.awscdk.services.comprehend.CfnDocumentClassifier.DocumentClassifierDocumentsProperty
Pythonaws_cdk.aws_comprehend.CfnDocumentClassifier.DocumentClassifierDocumentsProperty
TypeScript aws-cdk-lib » aws_comprehend » CfnDocumentClassifier » DocumentClassifierDocumentsProperty

The location of the training documents.

This parameter is required in a request to create 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 { aws_comprehend as comprehend } from 'aws-cdk-lib';
const documentClassifierDocumentsProperty: comprehend.CfnDocumentClassifier.DocumentClassifierDocumentsProperty = {
  s3Uri: 's3Uri',

  // the properties below are optional
  testS3Uri: 'testS3Uri',
};

Properties

NameTypeDescription
s3UristringThe S3 URI location of the training documents specified in the S3Uri CSV file.
testS3Uri?stringThe S3 URI location of the test documents included in the TestS3Uri CSV file.

s3Uri

Type: string

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.