AWS Service Catalog 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 Service Catalog.

Note: All the list below are in alphabetical order.

Service Code: AWSServiceCatalog

Python Code to get Attribute Names for AWS Service Catalog using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS Service Catalog


Python Code to get the Attribute Values List for AWS Service Catalog using Boto3

import boto3

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

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

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='AWSServiceCatalog',
        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 Service Catalog

Attribute Name: location
Values:

Africa (Cape Town)
Asia Pacific (Hong Kong)
Asia Pacific (Mumbai)
Asia Pacific (Osaka)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
AWS GovCloud (US-East)
AWS GovCloud (US-West)
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 (Los Angeles)
US West (N. California)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: operation
Values:

ActivePortfolio
ServiceCatalogActivePortfolio

Attribute Name: productFamily
Values:

API Calls
Portfolio

Attribute Name: servicecode
Values:

AWSServiceCatalog

Attribute Name: servicename
Values:

AWS Service Catalog

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

AFS1-SC-API-Calls
APE1-SC-API-Calls
APN1-SC-API-Calls
APN2-SC-API-Calls
APN3-SC-API-Calls
APS1-SC-API-Calls
APS2-SC-API-Calls
APS3-SC-API-Calls
CAN1-SC-API-Calls
CAN1-SCPerActivePortfolio
CAN1-ServiceCatalogPerPortfolio
EU-SC-API-Calls
EU-SCPerActivePortfolio
EU-ServiceCatalogPerPortfolio
EUC1-SC-API-Calls
EUN1-SC-API-Calls
EUS1-SC-API-Calls
EUW2-SC-API-Calls
EUW3-SC-API-Calls
LAX1-SC-API-Calls
MES1-SC-API-Calls
SAE1-SC-API-Calls
SCPerActivePortfolio
ServiceCatalogPerPortfolio
UGE1-SC-API-Calls
UGW1-SC-API-Calls
USE1-SC-API-Calls
USE2-SC-API-Calls
USW1-SC-API-Calls
USW2-SC-API-Calls
USW2-SCPerActivePortfolio
USW2-ServiceCatalogPerPortfolio

Attribute Name: withActiveUsers
Values:

No
Yes

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

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 *