Class: Aws::Comprehend::Types::DetectSyntaxRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectSyntaxRequest
- 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 code of the input documents.
-
#text ⇒ String
A UTF-8 string.
Instance Attribute Details
#language_code ⇒ String
The language code of the input documents. You can specify any of the following languages supported by Amazon Comprehend: German (“de”), English (“en”), Spanish (“es”), French (“fr”), Italian (“it”), or Portuguese (“pt”).
2616 2617 2618 2619 2620 2621 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2616 class DetectSyntaxRequest < Struct.new( :text, :language_code) SENSITIVE = [:text] include Aws::Structure end |
#text ⇒ String
A UTF-8 string. The maximum string size is 5 KB.
2616 2617 2618 2619 2620 2621 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2616 class DetectSyntaxRequest < Struct.new( :text, :language_code) SENSITIVE = [:text] include Aws::Structure end |