Class: Aws::Comprehend::Types::EntityTypesListItem
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::EntityTypesListItem
- 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
-
#type ⇒ String
An entity type within a labeled training dataset that Amazon Comprehend uses to train a custom entity recognizer.
Instance Attribute Details
#type ⇒ String
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).
4482 4483 4484 4485 4486 |
# File 'lib/aws-sdk-comprehend/types.rb', line 4482 class EntityTypesListItem < Struct.new( :type) SENSITIVE = [] include Aws::Structure end |