Class: Aws::ComprehendMedical::Types::UnmappedAttribute
- Inherits:
-
Struct
- Object
- Struct
- Aws::ComprehendMedical::Types::UnmappedAttribute
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehendmedical/types.rb
Overview
An attribute that was extracted, but Amazon Comprehend Medical was unable to relate to an entity.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#attribute ⇒ Types::Attribute
The specific attribute that has been extracted but not mapped to an entity.
-
#type ⇒ String
The type of the unmapped attribute, could be one of the following values: “MEDICATION”, “MEDICAL_CONDITION”, “ANATOMY”, “TEST_AND_TREATMENT_PROCEDURE” or “PROTECTED_HEALTH_INFORMATION”.
Instance Attribute Details
#attribute ⇒ Types::Attribute
The specific attribute that has been extracted but not mapped to an entity.
2167 2168 2169 2170 2171 2172 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 2167 class UnmappedAttribute < Struct.new( :type, :attribute) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the unmapped attribute, could be one of the following values: “MEDICATION”, “MEDICAL_CONDITION”, “ANATOMY”, “TEST_AND_TREATMENT_PROCEDURE” or “PROTECTED_HEALTH_INFORMATION”.
2167 2168 2169 2170 2171 2172 |
# File 'lib/aws-sdk-comprehendmedical/types.rb', line 2167 class UnmappedAttribute < Struct.new( :type, :attribute) SENSITIVE = [] include Aws::Structure end |