Class: Aws::ComprehendMedical::Types::DetectEntitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComprehendMedical::Types::DetectEntitiesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehendmedical/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entities ⇒ Array<Types::Entity>
The collection of medical entities extracted from the input text and their associated information.
-
#model_version ⇒ String
The version of the model used to analyze the documents.
-
#pagination_token ⇒ String
If the result of the previous request to ‘DetectEntities` was truncated, include the `PaginationToken` to fetch the next page of entities.
-
#unmapped_attributes ⇒ Array<Types::UnmappedAttribute>
Attributes extracted from the input text that we were unable to relate to an entity.
Instance Attribute Details
#entities ⇒ Array<Types::Entity>
The collection of medical entities extracted from the input text and their associated information. For each entity, the response provides the entity text, the entity category, where the entity text begins and ends, and the level of confidence that Amazon Comprehend Medical has in the detection and analysis. Attributes and traits of the entity are also returned.
402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 402 class DetectEntitiesResponse < Struct.new( :entities, :unmapped_attributes, :pagination_token, :model_version) SENSITIVE = [] include Aws::Structure end |
#model_version ⇒ String
The version of the model used to analyze the documents. The version number looks like X.X.X. You can use this information to track the model used for a particular batch of documents.
402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 402 class DetectEntitiesResponse < Struct.new( :entities, :unmapped_attributes, :pagination_token, :model_version) SENSITIVE = [] include Aws::Structure end |
#pagination_token ⇒ String
If the result of the previous request to ‘DetectEntities` was truncated, include the `PaginationToken` to fetch the next page of entities.
402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 402 class DetectEntitiesResponse < Struct.new( :entities, :unmapped_attributes, :pagination_token, :model_version) SENSITIVE = [] include Aws::Structure end |
#unmapped_attributes ⇒ Array<Types::UnmappedAttribute>
Attributes extracted from the input text that we were unable to relate to an entity.
402 403 404 405 406 407 408 409 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 402 class DetectEntitiesResponse < Struct.new( :entities, :unmapped_attributes, :pagination_token, :model_version) SENSITIVE = [] include Aws::Structure end |