Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SyntaxToken

import type { SyntaxToken } from "https://aws-api.deno.dev/v0.3/services/comprehend.ts?docs=full";

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 | null;
EndOffset?: number | null;
PartOfSpeech?: PartOfSpeechTag | null;
Text?: string | null;
TokenId?: number | null;
}

§Properties

§
BeginOffset?: number | null
[src]

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

§
EndOffset?: number | null
[src]

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

§
PartOfSpeech?: PartOfSpeechTag | null
[src]

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 "how-syntax".

§
Text?: string | null
[src]

The word that was recognized in the source text.

§
TokenId?: number | null
[src]

A unique identifier for a token.