Class: Aws::Comprehend::Types::DetectDominantLanguageResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectDominantLanguageResponse
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#languages ⇒ Array<Types::DominantLanguage>
The languages that Amazon Comprehend detected in the input text.
Instance Attribute Details
#languages ⇒ Array<Types::DominantLanguage>
The languages that Amazon Comprehend detected in the input text. For each language, the response returns the RFC 5646 language code and the level of confidence that Amazon Comprehend has in the accuracy of its inference. For more information about RFC 5646, see Tags for Identifying Languages on the IETF Tools web site.
1758 1759 1760 1761 1762 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 1758 class DetectDominantLanguageResponse < Struct.new( :languages) SENSITIVE = [] include Aws::Structure end |