Class: Aws::Comprehend::Types::DetectSyntaxResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectSyntaxResponse
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#syntax_tokens ⇒ Array<Types::SyntaxToken>
A collection of syntax tokens describing the text.
Instance Attribute Details
#syntax_tokens ⇒ Array<Types::SyntaxToken>
A collection of syntax tokens describing the text. For each token, the response provides the text, the token type, where the text begins and ends, and the level of confidence that Amazon Comprehend has that the token is correct. For a list of token types, see Syntax in the Comprehend Developer Guide.
2634 2635 2636 2637 2638 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2634 class DetectSyntaxResponse < Struct.new( :syntax_tokens) SENSITIVE = [] include Aws::Structure end |