Represents a work in the input text that was recognized and assigned a part of speech. There is one syntax token record for each word in the source text.

interface SyntaxToken {
    BeginOffset?: number;
    EndOffset?: number;
    PartOfSpeech?: PartOfSpeechTag;
    Text?: string;
    TokenId?: number;
}

Properties

BeginOffset?: number

The zero-based offset from the beginning of the source text to the first character in the word.

EndOffset?: number

The zero-based offset from the beginning of the source text to the last character in the word.

PartOfSpeech?: PartOfSpeechTag

Provides the part of speech label and the confidence level that Amazon Comprehend has that the part of speech was correctly identified. For more information, see Syntax in the Comprehend Developer Guide.

Text?: string

The word that was recognized in the source text.

TokenId?: number

A unique identifier for a token.