AWSComprehendSyntaxToken

Objective-C

@interface AWSComprehendSyntaxToken

Swift

class AWSComprehendSyntaxToken

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.

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

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable beginOffset;

    Swift

    var beginOffset: NSNumber? { get set }
  • The zero-based offset from the beginning of the source text to the last character in the word.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable endOffset;

    Swift

    var endOffset: NSNumber? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSComprehendPartOfSpeechTag *_Nullable partOfSpeech;

    Swift

    var partOfSpeech: AWSComprehendPartOfSpeechTag? { get set }
  • The word that was recognized in the source text.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable text;

    Swift

    var text: String? { get set }
  • A unique identifier for a token.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable tokenId;

    Swift

    var tokenId: NSNumber? { get set }