Class: Aws::Comprehend::Types::DocumentClassifierDocuments

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-comprehend/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

Instance Attribute Details

#s3_uriString

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

Returns:

  • (String)


2917
2918
2919
2920
2921
2922
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2917

class DocumentClassifierDocuments < Struct.new(
  :s3_uri,
  :test_s3_uri)
  SENSITIVE = []
  include Aws::Structure
end

#test_s3_uriString

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.

Returns:

  • (String)


2917
2918
2919
2920
2921
2922
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2917

class DocumentClassifierDocuments < Struct.new(
  :s3_uri,
  :test_s3_uri)
  SENSITIVE = []
  include Aws::Structure
end