Class: Aws::Comprehend::Types::DetectKeyPhrasesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectKeyPhrasesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:text]
Instance Attribute Summary collapse
-
#language_code ⇒ String
The language of the input documents.
-
#text ⇒ String
A UTF-8 text string.
Instance Attribute Details
#language_code ⇒ String
The language of the input documents. You can specify any of the primary languages supported by Amazon Comprehend. All documents must be in the same language.
2488 2489 2490 2491 2492 2493 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2488 class DetectKeyPhrasesRequest < Struct.new( :text, :language_code) SENSITIVE = [:text] include Aws::Structure end |
#text ⇒ String
A UTF-8 text string. The string must contain less than 100 KB of UTF-8 encoded characters.
2488 2489 2490 2491 2492 2493 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2488 class DetectKeyPhrasesRequest < Struct.new( :text, :language_code) SENSITIVE = [:text] include Aws::Structure end |