Class: Aws::Comprehend::Types::DocumentClassifierDocuments
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DocumentClassifierDocuments
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
The location of the training documents. This parameter is required in a request to create a semi-structured document classification model.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_uri ⇒ String
The S3 URI location of the training documents specified in the S3Uri CSV file.
-
#test_s3_uri ⇒ String
The S3 URI location of the test documents included in the TestS3Uri CSV file.
Instance Attribute Details
#s3_uri ⇒ String
The S3 URI location of the training documents specified in the S3Uri CSV file.
2917 2918 2919 2920 2921 2922 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2917 class DocumentClassifierDocuments < Struct.new( :s3_uri, :test_s3_uri) SENSITIVE = [] include Aws::Structure end |
#test_s3_uri ⇒ String
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.
2917 2918 2919 2920 2921 2922 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2917 class DocumentClassifierDocuments < Struct.new( :s3_uri, :test_s3_uri) SENSITIVE = [] include Aws::Structure end |