Table of Contents
A low-level client representing AWS Comprehend Medical (ComprehendMedical):
import boto3
client = boto3.client('comprehendmedical')
These are the available methods:
Check if an operation can be paginated.
Inspects the clinical text for a variety of medical entities and returns specific information about them such as entity category, location, and confidence score on that information .
See also: AWS API Documentation
Request Syntax
response = client.detect_entities(
Text='string'
)
[REQUIRED]
A UTF-8 text string containing the clinical content being examined for entities. Each string must contain fewer than 20,000 bytes of characters.
{
'Entities': [
{
'Id': 123,
'BeginOffset': 123,
'EndOffset': 123,
'Score': ...,
'Text': 'string',
'Category': 'MEDICATION'|'MEDICAL_CONDITION'|'PROTECTED_HEALTH_INFORMATION'|'TEST_TREATMENT_PROCEDURE'|'ANATOMY',
'Type': 'NAME'|'DOSAGE'|'ROUTE_OR_MODE'|'FORM'|'FREQUENCY'|'DURATION'|'GENERIC_NAME'|'BRAND_NAME'|'STRENGTH'|'RATE'|'ACUITY'|'TEST_NAME'|'TEST_VALUE'|'TEST_UNITS'|'PROCEDURE_NAME'|'TREATMENT_NAME'|'DATE'|'AGE'|'CONTACT_POINT'|'EMAIL'|'IDENTIFIER'|'URL'|'ADDRESS'|'PROFESSION'|'SYSTEM_ORGAN_SITE'|'DIRECTION'|'QUALITY'|'QUANTITY',
'Traits': [
{
'Name': 'SIGN'|'SYMPTOM'|'DIAGNOSIS'|'NEGATION',
'Score': ...
},
],
'Attributes': [
{
'Type': 'NAME'|'DOSAGE'|'ROUTE_OR_MODE'|'FORM'|'FREQUENCY'|'DURATION'|'GENERIC_NAME'|'BRAND_NAME'|'STRENGTH'|'RATE'|'ACUITY'|'TEST_NAME'|'TEST_VALUE'|'TEST_UNITS'|'PROCEDURE_NAME'|'TREATMENT_NAME'|'DATE'|'AGE'|'CONTACT_POINT'|'EMAIL'|'IDENTIFIER'|'URL'|'ADDRESS'|'PROFESSION'|'SYSTEM_ORGAN_SITE'|'DIRECTION'|'QUALITY'|'QUANTITY',
'Score': ...,
'RelationshipScore': ...,
'Id': 123,
'BeginOffset': 123,
'EndOffset': 123,
'Text': 'string',
'Traits': [
{
'Name': 'SIGN'|'SYMPTOM'|'DIAGNOSIS'|'NEGATION',
'Score': ...
},
]
},
]
},
],
'UnmappedAttributes': [
{
'Type': 'MEDICATION'|'MEDICAL_CONDITION'|'PROTECTED_HEALTH_INFORMATION'|'TEST_TREATMENT_PROCEDURE'|'ANATOMY',
'Attribute': {
'Type': 'NAME'|'DOSAGE'|'ROUTE_OR_MODE'|'FORM'|'FREQUENCY'|'DURATION'|'GENERIC_NAME'|'BRAND_NAME'|'STRENGTH'|'RATE'|'ACUITY'|'TEST_NAME'|'TEST_VALUE'|'TEST_UNITS'|'PROCEDURE_NAME'|'TREATMENT_NAME'|'DATE'|'AGE'|'CONTACT_POINT'|'EMAIL'|'IDENTIFIER'|'URL'|'ADDRESS'|'PROFESSION'|'SYSTEM_ORGAN_SITE'|'DIRECTION'|'QUALITY'|'QUANTITY',
'Score': ...,
'RelationshipScore': ...,
'Id': 123,
'BeginOffset': 123,
'EndOffset': 123,
'Text': 'string',
'Traits': [
{
'Name': 'SIGN'|'SYMPTOM'|'DIAGNOSIS'|'NEGATION',
'Score': ...
},
]
}
},
],
'PaginationToken': 'string'
}
Response Structure
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 Comprehend Medical has in the detection and analysis. Attributes and traits of the entity are also returned.
Provides information about an extracted medical entity.
The numeric identifier for the entity. This is a monotonically increasing id unique within this response rather than a global unique identifier.
The 0-based character offset in the input text that shows where the entity begins. The offset returns the UTF-8 code point in the string.
The 0-based character offset in the input text that shows where the entity ends. The offset returns the UTF-8 code point in the string.
The level of confidence that Comprehend Medical has in the accuracy of the detection.
The segment of input text extracted as this entity.
The category of the entity.
Describes the specific type of entity with category of entities.
Contextual information for the entity
Provides contextual information about the extracted entity.
Provides a name or contextual description about the trait.
The level of confidence that Comprehend Medical has in the accuracy of this trait.
The extracted attributes that relate to this entity.
An extracted segment of the text that is an attribute of an entity, or otherwise related to an entity, such as the dosage of a medication taken. It contains information about the attribute such as id, begin and end offset within the input text, and the segment of the input text.
The type of attribute.
The level of confidence that Comprehend Medical has that the segment of text is correctly recognized as an attribute.
The level of confidence that Comprehend Medical has that this attribute is correctly related to this entity.
The numeric identifier for this attribute. This is a monotonically increasing id unique within this response rather than a global unique identifier.
The 0-based character offset in the input text that shows where the attribute begins. The offset returns the UTF-8 code point in the string.
The 0-based character offset in the input text that shows where the attribute ends. The offset returns the UTF-8 code point in the string.
The segment of input text extracted as this attribute.
Contextual information for this attribute.
Provides contextual information about the extracted entity.
Provides a name or contextual description about the trait.
The level of confidence that Comprehend Medical has in the accuracy of this trait.
Attributes extracted from the input text that we were unable to relate to an entity.
An attribute that we extracted, but were unable to relate to an entity.
The type of the attribute, could be one of the following values: "MEDICATION", "MEDICAL_CONDITION", "ANATOMY", "TEST_AND_TREATMENT_PROCEDURE" or "PERSONAL_HEALTH_INFORMATION".
The specific attribute that has been extracted but not mapped to an entity.
The type of attribute.
The level of confidence that Comprehend Medical has that the segment of text is correctly recognized as an attribute.
The level of confidence that Comprehend Medical has that this attribute is correctly related to this entity.
The numeric identifier for this attribute. This is a monotonically increasing id unique within this response rather than a global unique identifier.
The 0-based character offset in the input text that shows where the attribute begins. The offset returns the UTF-8 code point in the string.
The 0-based character offset in the input text that shows where the attribute ends. The offset returns the UTF-8 code point in the string.
The segment of input text extracted as this attribute.
Contextual information for this attribute.
Provides contextual information about the extracted entity.
Provides a name or contextual description about the trait.
The level of confidence that Comprehend Medical has in the accuracy of this trait.
If the result of the previous request to DetectEntities was truncated, include the Paginationtoken to fetch the next page of entities.
Inspects the clinical text for personal health information (PHI) entities and entity category, location, and confidence score on that information.
See also: AWS API Documentation
Request Syntax
response = client.detect_phi(
Text='string'
)
[REQUIRED]
A UTF-8 text string containing the clinical content being examined for PHI entities. Each string must contain fewer than 20,000 bytes of characters.
{
'Entities': [
{
'Id': 123,
'BeginOffset': 123,
'EndOffset': 123,
'Score': ...,
'Text': 'string',
'Category': 'MEDICATION'|'MEDICAL_CONDITION'|'PROTECTED_HEALTH_INFORMATION'|'TEST_TREATMENT_PROCEDURE'|'ANATOMY',
'Type': 'NAME'|'DOSAGE'|'ROUTE_OR_MODE'|'FORM'|'FREQUENCY'|'DURATION'|'GENERIC_NAME'|'BRAND_NAME'|'STRENGTH'|'RATE'|'ACUITY'|'TEST_NAME'|'TEST_VALUE'|'TEST_UNITS'|'PROCEDURE_NAME'|'TREATMENT_NAME'|'DATE'|'AGE'|'CONTACT_POINT'|'EMAIL'|'IDENTIFIER'|'URL'|'ADDRESS'|'PROFESSION'|'SYSTEM_ORGAN_SITE'|'DIRECTION'|'QUALITY'|'QUANTITY',
'Traits': [
{
'Name': 'SIGN'|'SYMPTOM'|'DIAGNOSIS'|'NEGATION',
'Score': ...
},
],
'Attributes': [
{
'Type': 'NAME'|'DOSAGE'|'ROUTE_OR_MODE'|'FORM'|'FREQUENCY'|'DURATION'|'GENERIC_NAME'|'BRAND_NAME'|'STRENGTH'|'RATE'|'ACUITY'|'TEST_NAME'|'TEST_VALUE'|'TEST_UNITS'|'PROCEDURE_NAME'|'TREATMENT_NAME'|'DATE'|'AGE'|'CONTACT_POINT'|'EMAIL'|'IDENTIFIER'|'URL'|'ADDRESS'|'PROFESSION'|'SYSTEM_ORGAN_SITE'|'DIRECTION'|'QUALITY'|'QUANTITY',
'Score': ...,
'RelationshipScore': ...,
'Id': 123,
'BeginOffset': 123,
'EndOffset': 123,
'Text': 'string',
'Traits': [
{
'Name': 'SIGN'|'SYMPTOM'|'DIAGNOSIS'|'NEGATION',
'Score': ...
},
]
},
]
},
],
'PaginationToken': 'string'
}
Response Structure
The collection of PHI 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 Comprehend Medical has in its detection.
Provides information about an extracted medical entity.
The numeric identifier for the entity. This is a monotonically increasing id unique within this response rather than a global unique identifier.
The 0-based character offset in the input text that shows where the entity begins. The offset returns the UTF-8 code point in the string.
The 0-based character offset in the input text that shows where the entity ends. The offset returns the UTF-8 code point in the string.
The level of confidence that Comprehend Medical has in the accuracy of the detection.
The segment of input text extracted as this entity.
The category of the entity.
Describes the specific type of entity with category of entities.
Contextual information for the entity
Provides contextual information about the extracted entity.
Provides a name or contextual description about the trait.
The level of confidence that Comprehend Medical has in the accuracy of this trait.
The extracted attributes that relate to this entity.
An extracted segment of the text that is an attribute of an entity, or otherwise related to an entity, such as the dosage of a medication taken. It contains information about the attribute such as id, begin and end offset within the input text, and the segment of the input text.
The type of attribute.
The level of confidence that Comprehend Medical has that the segment of text is correctly recognized as an attribute.
The level of confidence that Comprehend Medical has that this attribute is correctly related to this entity.
The numeric identifier for this attribute. This is a monotonically increasing id unique within this response rather than a global unique identifier.
The 0-based character offset in the input text that shows where the attribute begins. The offset returns the UTF-8 code point in the string.
The 0-based character offset in the input text that shows where the attribute ends. The offset returns the UTF-8 code point in the string.
The segment of input text extracted as this attribute.
Contextual information for this attribute.
Provides contextual information about the extracted entity.
Provides a name or contextual description about the trait.
The level of confidence that Comprehend Medical has in the accuracy of this trait.
If the result of the previous request to DetectPHI was truncated, include the Paginationtoken to fetch the next page of PHI entities.
Generate a presigned url given a client, its method, and arguments
The presigned url
Create a paginator for an operation.
Returns an object that can wait for some condition.
The available paginators are: