Amazon Comprehend Medical AWS Price List API all Attribute Names and Values


Last Updated on April 28, 2021

Below is a reference for all attribute names and attribute values in AWS Price List API for Comprehend Medical.

Note: All the list below are in alphabetical order.

Service Code: comprehendmedical

Python Code to get Attribute Names for Comprehend Medical using Boto3

import boto3

pricing_client = boto3.client('pricing', region_name='us-east-1')

response = pricing_client.describe_services(ServiceCode='comprehendmedical')

attribute_names = response['Services'][0]['AttributeNames']

print(attribute_names)

Attribute Name List for Comprehend Medical


Python Code to get the Attribute Values List for Comprehend Medical using Boto3

import boto3

pricing_client = boto3.client('pricing', region_name='us-east-1')

response = pricing_client.describe_services(ServiceCode='comprehendmedical')

attribute_names = response['Services'][0]['AttributeNames']

for attribute_name in attribute_names:

    attribute_values = []

    response_iterator = pricing_client.get_paginator('get_attribute_values').paginate(
        ServiceCode='comprehendmedical',
        AttributeName=attribute_name
    )

    for response in response_iterator:
        for attribute_value in response['AttributeValues']:
            attribute_values.append(attribute_value['Value'])

    print('Attribute Name:', attribute_name)
    print(attribute_values)
    print()

Attribute Values List for Comprehend Medical

Attribute Name: group
Values:

Global-ComprehendMedical-batch-govcloud
Global-ComprehendMedical-batch-temp
Global-ComprehendMedical-DetectEntities
Global-ComprehendMedical-DetectPHI
Global-ComprehendMedical-InferICD10CM
Global-ComprehendMedical-InferRxNorm

Attribute Name: location
Values:

Any
Asia Pacific (Sydney)
AWS GovCloud (US-West)
Canada (Central)
EU (Ireland)
EU (London)
US East (N. Virginia)
US East (Ohio)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: operation
Values:

DetectEntities
DetectPHI
EntitiesDetection
ICD10CMInference
InferICD10CM
InferRxNorm
PHIDetection
RxNormInference

Attribute Name: productFamily
Values:

Entity Detection

Attribute Name: Restriction
Values:

Limited SKU Usage

Attribute Name: servicecode
Values:

comprehendmedical

Attribute Name: servicename
Values:

Comprehend Medical

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

APS2-ComprehendMedical-Batching-SYD-Prod       Global-ComprehendMedical-Batching-Prod         
APS2-DetectEntities                            Global-ComprehendMedical-Batching-Prod-temp    
APS2-DetectPHI                                 Global-InferICD10CM                            
APS2-InferICD10CM                              Global-InferRxNorm                             
APS2-InferRxNorm                               UGW1-ComprehendMedical-Batching-PDT-Prod       
CAN1-ComprehendMedical-Batching-YUL-Prod       UGW1-DetectEntities                            
CAN1-DetectEntities                            UGW1-DetectPHI                                 
CAN1-DetectPHI                                 UGW1-InferICD10CM                              
CAN1-InferICD10CM                              UGW1-InferRxNorm                               
CAN1-InferRxNorm                               USE1-ComprehendMedical-Batching-IAD-Prod       
ComprehendMedical-Batching-CMH-Prod            USE1-DetectEntities                            
ComprehendMedical-Batching-DUB-Prod            USE1-DetectPHI                                 
ComprehendMedical-Batching-IAD-Prod            USE1-InferICD10CM                              
ComprehendMedical-Batching-LHR-Prod            USE1-InferRxNorm                               
ComprehendMedical-Batching-PDT-Prod            USE2-ComprehendMedical-Batching-CMH-Prod       
ComprehendMedical-Batching-PDX-Prod            USE2-DetectEntities                            
ComprehendMedical-Batching-SYD-Prod            USE2-DetectPHI                                 
ComprehendMedical-Batching-YUL-Prod            USE2-InferICD10CM                              
EU-ComprehendMedical-Batching-DUB-Prod         USE2-InferRxNorm                               
EU-DetectEntities                              USW2-ComprehendMedical-Batching-PDX-Prod       
EU-DetectPHI                                   USW2-DetectEntities                            
EU-InferICD10CM                                USW2-DetectPHI                                 
EU-InferRxNorm                                 USW2-InferICD10CM                              
EUW2-ComprehendMedical-Batching-LHR-Prod       USW2-InferRxNorm                               
EUW2-DetectEntities                            
EUW2-DetectPHI                                 
EUW2-InferICD10CM                              
EUW2-InferRxNorm                               
Global-CompMed-DetectEntities                  
Global-CompMed-DetectPHI                       

We hope the above list of attribute names and values helps when using the AWS Price List API for Comprehend Medical.

If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.


Leave a Reply

Your email address will not be published. Required fields are marked *