AWS Budgets 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 Budgets.

Note: All the list below are in alphabetical order.

Service Code: AWSBudgets

Python Code to get Attribute Names for AWS Budgets using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS Budgets


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

import boto3

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

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

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='AWSBudgets',
        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 Budgets

Attribute Name: groupDescription
Values:

Budget Actions
Budget Notifications
Budgets Reports Distribution

Attribute Name: location
Values:

Any

Attribute Name: locationType
Values:

AWS Region

Attribute Name: operation
Values:

ReportDelivery

Attribute Name: productFamily
Values:

AWS Budgets

Attribute Name: servicecode
Values:

AWSBudgets

Attribute Name: servicename
Values:

AWS Budgets

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

ActionEnabledBudgetsUsage
BudgetsReports
BudgetsUsage

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

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 *