Class: Aws::Comprehend::Types::DetectSyntaxResponse

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-comprehend/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#syntax_tokensArray<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

Returns:



2616
2617
2618
2619
2620
# File 'lib/aws-sdk-comprehend/types.rb', line 2616

class DetectSyntaxResponse < Struct.new(
  :syntax_tokens)
  SENSITIVE = []
  include Aws::Structure
end