Class: Aws::Comprehend::Types::DetectTargetedSentimentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectTargetedSentimentRequest
- 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. Currently, English is the only supported language.
2654 2655 2656 2657 2658 2659 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2654 class DetectTargetedSentimentRequest < Struct.new( :text, :language_code) SENSITIVE = [:text] include Aws::Structure end |
#text ⇒ String
A UTF-8 text string. The maximum string length is 5 KB.
2654 2655 2656 2657 2658 2659 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2654 class DetectTargetedSentimentRequest < Struct.new( :text, :language_code) SENSITIVE = [:text] include Aws::Structure end |