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

Note: All the list below are in alphabetical order.

Service Code: AWSConfig

Python Code to get Attribute Names for AWSConfig using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWSConfig


Python Code to get the Attribute Values List for AWSConfig using Boto3

import boto3

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

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

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='AWSConfig',
        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 AWSConfig

Attribute Name: category
Values:

ConfigRuleEvaluation

Attribute Name: ciType
Values:

Core
Custom

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)
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 (N. California)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: productFamily
Values:

Management Tools - AWS Config
Management Tools - AWS Config Conformance Packs
Management Tools - AWS Config Rules

Attribute Name: servicecode
Values:

AWSConfig

Attribute Name: servicename
Values:

AWS Config

Attribute Name: termType
Values:

OnDemand

Attribute Name: type
Values:

ConformancePacks

Attribute Name: usagetype
Values:

AFS1-ConfigRuleEvaluations         CAN1-CustomConfigItemRecorded      SAE1-ConfigurationItemRecorded     
AFS1-ConfigurationItemRecorded     ConfigurationItemRecorded          SAE1-ConformancePackEvaluations    
AFS1-ConformancePackEvaluations    EU-ConfigRuleEvaluations           SAE1-CustomConfigItemRecorded      
AFS1-CustomConfigItemRecorded      EU-ConfigurationItemRecorded       UGE1-ConfigRuleEvaluations         
APE1-ConfigRuleEvaluations         EU-ConformancePackEvaluations      UGE1-ConfigurationItemRecorded     
APE1-ConfigurationItemRecorded     EU-CustomConfigItemRecorded        UGW1-ConfigRuleEvaluations         
APE1-ConformancePackEvaluations    EUC1-ConfigRuleEvaluations         UGW1-ConfigurationItemRecorded     
APN1-ConfigRuleEvaluations         EUC1-ConfigurationItemRecorded     USE1-ConfigRuleEvaluations         
APN1-ConfigurationItemRecorded     EUC1-ConformancePackEvaluations    USE1-ConformancePackEvaluations    
APN1-ConformancePackEvaluations    EUC1-CustomConfigItemRecorded      USE1-CustomConfigItemRecorded      
APN1-CustomConfigItemRecorded      EUN1-ConfigRuleEvaluations         USE2-ConfigRuleEvaluations         
APN2-ConfigRuleEvaluations         EUN1-ConfigurationItemRecorded     USE2-ConfigurationItemRecorded     
APN2-ConfigurationItemRecorded     EUN1-ConformancePackEvaluations    USE2-ConformancePackEvaluations    
APN2-ConformancePackEvaluations    EUN1-CustomConfigItemRecorded      USE2-CustomConfigItemRecorded      
APN2-CustomConfigItemRecorded      EUS1-ConfigRuleEvaluations         USW1-ConfigRuleEvaluations         
APS1-ConfigRuleEvaluations         EUS1-ConfigurationItemRecorded     USW1-ConfigurationItemRecorded     
APS1-ConfigurationItemRecorded     EUS1-ConformancePackEvaluations    USW1-ConformancePackEvaluations    
APS1-ConformancePackEvaluations    EUS1-CustomConfigItemRecorded      USW1-CustomConfigItemRecorded      
APS1-CustomConfigItemRecorded      EUW2-ConfigRuleEvaluations         USW2-ConfigRuleEvaluations         
APS2-ConfigRuleEvaluations         EUW2-ConfigurationItemRecorded     USW2-ConfigurationItemRecorded     
APS2-ConfigurationItemRecorded     EUW2-ConformancePackEvaluations    USW2-ConformancePackEvaluations    
APS2-ConformancePackEvaluations    EUW2-CustomConfigItemRecorded      USW2-CustomConfigItemRecorded      
APS2-CustomConfigItemRecorded      EUW3-ConfigRuleEvaluations         
APS3-ConfigRuleEvaluations         EUW3-ConfigurationItemRecorded     
APS3-ConfigurationItemRecorded     EUW3-ConformancePackEvaluations    
APS3-ConformancePackEvaluations    EUW3-CustomConfigItemRecorded      
APS3-CustomConfigItemRecorded      MES1-ConfigRuleEvaluations         
CAN1-ConfigRuleEvaluations         MES1-ConfigurationItemRecorded     
CAN1-ConfigurationItemRecorded     MES1-ConformancePackEvaluations    
CAN1-ConformancePackEvaluations    SAE1-ConfigRuleEvaluations         

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

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 *