Class: Aws::Comprehend::Types::EntityTypesListItem

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

Overview

An entity type within a labeled training dataset that Amazon Comprehend uses to train a custom entity recognizer.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

An entity type within a labeled training dataset that Amazon Comprehend uses to train a custom entity recognizer.

Entity types must not contain the following invalid characters: \n (line break), \\n (escaped line break, \r (carriage return), \\r (escaped carriage return), \t (tab), \\t (escaped tab), and , (comma).

Returns:

  • (String)


4482
4483
4484
4485
4486
# File 'lib/aws-sdk-comprehend/types.rb', line 4482

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