Class: Aws::Comprehend::Types::DetectSyntaxResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectSyntaxResponse
- Includes:
- Structure
- Defined in:
- 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][1
-
in the Comprehend Developer Guide.
[1]: docs.aws.amazon.com/comprehend/latest/dg/how-syntax.html
2637 2638 2639 2640 2641 |
# File 'lib/aws-sdk-comprehend/types.rb', line 2637 class DetectSyntaxResponse < Struct.new( :syntax_tokens) SENSITIVE = [] include Aws::Structure end |