Show / Hide Table of Contents

Class CfnDocumentClassifier.DocumentClassifierDocumentsProperty

The location of the training documents.

Inheritance
object
CfnDocumentClassifier.DocumentClassifierDocumentsProperty
Implements
CfnDocumentClassifier.IDocumentClassifierDocumentsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Comprehend
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDocumentClassifier.DocumentClassifierDocumentsProperty : CfnDocumentClassifier.IDocumentClassifierDocumentsProperty
Syntax (vb)
Public Class CfnDocumentClassifier.DocumentClassifierDocumentsProperty Implements CfnDocumentClassifier.IDocumentClassifierDocumentsProperty
Remarks

This parameter is required in a request to create a semi-structured document classification model.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-comprehend-documentclassifier-documentclassifierdocuments.html

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

DocumentClassifierDocumentsProperty()

The location of the training documents.

Properties

S3Uri

The S3 URI location of the training documents specified in the S3Uri CSV file.

TestS3Uri

The S3 URI location of the test documents included in the TestS3Uri CSV file.

Constructors

DocumentClassifierDocumentsProperty()

The location of the training documents.

public DocumentClassifierDocumentsProperty()
Remarks

This parameter is required in a request to create a semi-structured document classification model.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-comprehend-documentclassifier-documentclassifierdocuments.html

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"
             };

Properties

S3Uri

The S3 URI location of the training documents specified in the S3Uri CSV file.

public string S3Uri { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-comprehend-documentclassifier-documentclassifierdocuments.html#cfn-comprehend-documentclassifier-documentclassifierdocuments-s3uri

TestS3Uri

The S3 URI location of the test documents included in the TestS3Uri CSV file.

public string? TestS3Uri { get; set; }
Property Value

string

Remarks

This field is not required if you do not specify a test CSV file.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-comprehend-documentclassifier-documentclassifierdocuments.html#cfn-comprehend-documentclassifier-documentclassifierdocuments-tests3uri

Implements

CfnDocumentClassifier.IDocumentClassifierDocumentsProperty
Back to top Generated by DocFX