Class: Aws::Comprehend::Types::BatchDetectDominantLanguageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::BatchDetectDominantLanguageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:text_list]
Instance Attribute Summary collapse
-
#text_list ⇒ Array<String>
A list containing the UTF-8 encoded text of the input documents.
Instance Attribute Details
#text_list ⇒ Array<String>
A list containing the UTF-8 encoded text of the input documents. The list can contain a maximum of 25 documents. Each document should contain at least 20 characters. The maximum size of each document is 5 KB.
118 119 120 121 122 |
# File 'lib/aws-sdk-comprehend/types.rb', line 118 class BatchDetectDominantLanguageRequest < Struct.new( :text_list) SENSITIVE = [:text_list] include Aws::Structure end |