Class: Aws::Comprehend::Types::DetectEntitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DetectEntitiesResponse
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entities ⇒ Array<Types::Entity>
A collection of entities identified in the input text.
Instance Attribute Details
#entities ⇒ Array<Types::Entity>
A collection of entities identified in the input text. For each entity, the response provides the entity text, entity type, where the entity text begins and ends, and the level of confidence that Amazon Comprehend has in the detection.
If your request uses a custom entity recognition model, Amazon Comprehend detects the entities that the model is trained to recognize. Otherwise, it detects the default entity types. For a list of default entity types, see how-entities.
1830 1831 1832 1833 1834 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 1830 class DetectEntitiesResponse < Struct.new( :entities) SENSITIVE = [] include Aws::Structure end |