Class CfnDocumentClassifier.DocumentClassifierDocumentsProperty
The location of the training documents.
Inheritance
Namespace: Amazon.CDK.AWS.Comprehend
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DocumentClassifierDocumentsProperty : Object, CfnDocumentClassifier.IDocumentClassifierDocumentsProperty
Syntax (vb)
Public Class DocumentClassifierDocumentsProperty
Inherits Object
Implements CfnDocumentClassifier.IDocumentClassifierDocumentsProperty
Remarks
This parameter is required in a request to create a semi-structured document classification model.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Comprehend;
var documentClassifierDocumentsProperty = new DocumentClassifierDocumentsProperty {
S3Uri = "s3Uri",
// the properties below are optional
TestS3Uri = "testS3Uri"
};
Synopsis
Constructors
Document |
Properties
S3Uri | The S3 URI location of the training documents specified in the S3Uri CSV file. |
Test |
The S3 URI location of the test documents included in the TestS3Uri CSV file. |
Constructors
DocumentClassifierDocumentsProperty()
public DocumentClassifierDocumentsProperty()
Properties
S3Uri
The S3 URI location of the training documents specified in the S3Uri CSV file.
public string S3Uri { get; set; }
Property Value
System.
Remarks
TestS3Uri
The S3 URI location of the test documents included in the TestS3Uri CSV file.
public string TestS3Uri { get; set; }
Property Value
System.
Remarks
This field is not required if you do not specify a test CSV file.