AWS Cloud Map 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 AWS Cloud Map.

Note: All the list below are in alphabetical order.

Service Code: AWSCloudMap

Python Code to get Attribute Names for AWS Cloud Map using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS Cloud Map


Python Code to get the Attribute Values List for AWS Cloud Map using Boto3

import boto3

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

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

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='AWSCloudMap',
        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 AWS Cloud Map

Attribute Name: location
Values:

Africa (Cape Town)
Asia Pacific (Hong Kong)
Asia Pacific (Mumbai)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
Canada (Central)
EU (Frankfurt)
EU (Ireland)
EU (London)
EU (Milan)
EU (Paris)
EU (Stockholm)
Middle East (Bahrain)
South America (Sao Paulo)
US East (N. Virginia)
US East (Ohio)
US West (N. California)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: productFamily
Values:

AWS Cloud Map

Attribute Name: servicecode
Values:

AWSCloudMap

Attribute Name: servicename
Values:

AWS Cloud Map

Attribute Name: termType
Values:

OnDemand

Attribute Name: type
Values:

API calls
Resource-Month

Attribute Name: usagetype
Values:

AFS1-Cloud-Map-API-Calls
AFS1-Cloud-Map-Resources
APE1-Cloud-Map-API-Calls
APE1-Cloud-Map-Resources
APN1-Cloud-Map-API-Calls
APN1-Cloud-Map-Resources
APN2-Cloud-Map-API-Calls
APN2-Cloud-Map-Resources
APS1-Cloud-Map-API-Calls
APS1-Cloud-Map-Resources
APS2-Cloud-Map-API-Calls
APS2-Cloud-Map-Resources
APS3-Cloud-Map-API-Calls
APS3-Cloud-Map-Resources
CAN1-Cloud-Map-API-Calls
CAN1-Cloud-Map-Resources
EU-Cloud-Map-API-Calls
EU-Cloud-Map-Resources
EUC1-Cloud-Map-API-Calls
EUC1-Cloud-Map-Resources
EUN1-Cloud-Map-API-Calls
EUN1-Cloud-Map-Resources
EUS1-Cloud-Map-API-Calls
EUS1-Cloud-Map-Resources
EUW2-Cloud-Map-API-Calls
EUW2-Cloud-Map-Resources
EUW3-Cloud-Map-API-Calls
EUW3-Cloud-Map-Resources
MES1-Cloud-Map-API-Calls
MES1-Cloud-Map-Resources
SAE1-Cloud-Map-API-Calls
SAE1-Cloud-Map-Resources
USE1-Cloud-Map-API-Calls
USE1-Cloud-Map-Resources
USE2-Cloud-Map-API-Calls
USE2-Cloud-Map-Resources
USW1-Cloud-Map-API-Calls
USW1-Cloud-Map-Resources
USW2-Cloud-Map-API-Calls
USW2-Cloud-Map-Resources

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

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 *