Amazon Chime Call Me 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 Amazon Chime Call Me.

Note: All the list below are in alphabetical order.

Service Code: AmazonChimeCallMe

Python Code to get Attribute Names for Amazon Chime Call Me using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for Amazon Chime Call Me


Python Code to get the Attribute Values List for Amazon Chime Call Me using Boto3

import boto3

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

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

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='AmazonChimeCallMe',
        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 Amazon Chime Call Me

Attribute Name: country
Values:

United States of America

Attribute Name: location
Values:

US East (N. Virginia)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: productFamily
Values:

AmazonChimeCallMeProductFamily

Attribute Name: servicecode
Values:

AmazonChimeCallMe

Attribute Name: servicename
Values:

Amazon Chime Call Me

Attribute Name: termType
Values:

OnDemand

Attribute Name: tocountry
Values:

Argentina
Australia
Belgium
Brazil
Canada
Colombia
Cyprus
Czech Republic
Denmark
Finland
France
Germany
Greece
Hong Kong
Hungary
Ireland
Israel
Italy
Japan
Latvia
Lithuania
Luxembourg
Malta
Mexico
Netherlands
New Zealand
Norway
Panama
Peru
Poland
Portugal
Puerto Rico
Romania
South Africa
Spain
Sweden
Switzerland
Turkey
United Kingdom
United States of America

Attribute Name: usagetype
Values:

USE1-US-AR-callme-minutes
USE1-US-AU-callme-minutes
USE1-US-BE-callme-minutes
USE1-US-BR-callme-minutes
USE1-US-CA-callme-minutes
USE1-US-CH-callme-minutes
USE1-US-CO-callme-minutes
USE1-US-CY-callme-minutes
USE1-US-CZ-callme-minutes
USE1-US-DE-callme-minutes
USE1-US-DK-callme-minutes
USE1-US-ES-callme-minutes
USE1-US-FI-callme-minutes
USE1-US-FR-callme-minutes
USE1-US-GB-callme-minutes
USE1-US-GR-callme-minutes
USE1-US-HK-callme-minutes
USE1-US-HU-callme-minutes
USE1-US-IE-callme-minutes
USE1-US-IL-callme-minutes
USE1-US-IT-callme-minutes
USE1-US-JP-callme-minutes
USE1-US-LT-callme-minutes
USE1-US-LU-callme-minutes
USE1-US-LV-callme-minutes
USE1-US-MT-callme-minutes
USE1-US-MX-callme-minutes
USE1-US-NL-callme-minutes
USE1-US-NO-callme-minutes
USE1-US-NZ-callme-minutes
USE1-US-PA-callme-minutes
USE1-US-PE-callme-minutes
USE1-US-PL-callme-minutes
USE1-US-PR-callme-minutes
USE1-US-PT-callme-minutes
USE1-US-RO-callme-minutes
USE1-US-SE-callme-minutes
USE1-US-TR-callme-minutes
USE1-US-US-callme-minutes
USE1-US-ZA-callme-minutes

We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Chime Call Me.

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 *