Class: Aws::Comprehend::Types::DetectDominantLanguageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectDominantLanguageRequest
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Note:
When making an API call, you may pass DetectDominantLanguageRequest data as a hash:
{
text: "CustomerInputString", # required
}
Constant Summary collapse
- SENSITIVE =
[:text]
Instance Attribute Summary collapse
-
#text ⇒ String
A UTF-8 text string.
Instance Attribute Details
#text ⇒ String
A UTF-8 text string. Each string should contain at least 20 characters and must contain fewer that 5,000 bytes of UTF-8 encoded characters.
1738 1739 1740 1741 1742 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 1738 class DetectDominantLanguageRequest < Struct.new( :text) SENSITIVE = [:text] include Aws::Structure end |