AWS IoT Device Management 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 IoT Device Management.

Note: All the list below are in alphabetical order.

Service Code: IoTDeviceManagement

Python Code to get Attribute Names for AWS IoT Device Management using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS IoT Device Management


Python Code to get the Attribute Values List for AWS IoT Device Management using Boto3

import boto3

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

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

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='IoTDeviceManagement',
        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 IoT Device Management

Attribute Name: eventType
Values:

Operation
Queries

Attribute Name: indexingSource
Values:

Any

Attribute Name: location
Values:

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 (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: newcode
Values:

Yes

Attribute Name: productFamily
Values:

IoTDeviceManagement

Attribute Name: servicecode
Values:

IoTDeviceManagement

Attribute Name: servicename
Values:

AWS IoT Device Management

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

APE1-IndexedData          CAN1-IndexedData          MES1-IndexedData          USW1-IndexedData          
APE1-JobExecutions        CAN1-JobExecutions        MES1-JobExecutions        USW1-JobExecutions        
APE1-Queries              CAN1-Queries              MES1-Queries              USW1-Queries              
APE1-ThingRegistration    CAN1-ThingRegistration    MES1-ThingRegistration    USW1-ThingRegistration    
APE1-TunnelsOpened        CAN1-TunnelsOpened        MES1-TunnelsOpened        USW1-TunnelsOpened        
APN1-IndexedData          EU-IndexedData            SAE1-IndexedData          USW2-IndexedData          
APN1-JobExecutions        EU-JobExecutions          SAE1-JobExecutions        USW2-JobExecutions        
APN1-Queries              EU-Queries                SAE1-Queries              USW2-Queries              
APN1-ThingRegistration    EU-ThingRegistration      SAE1-ThingRegistration    USW2-ThingRegistration    
APN1-TunnelsOpened        EU-TunnelsOpened          SAE1-TunnelsOpened        USW2-TunnelsOpened        
APN2-IndexedData          EUC1-IndexedData          UGE1-IndexedData          
APN2-JobExecutions        EUC1-JobExecutions        UGE1-JobExecutions        
APN2-Queries              EUC1-Queries              UGE1-Queries              
APN2-ThingRegistration    EUC1-ThingRegistration    UGE1-ThingRegistration    
APN2-TunnelsOpened        EUC1-TunnelsOpened        UGE1-TunnelsOpened        
APS1-IndexedData          EUN1-IndexedData          UGW1-IndexedData          
APS1-JobExecutions        EUN1-JobExecutions        UGW1-JobExecutions        
APS1-Queries              EUN1-Queries              UGW1-Queries              
APS1-ThingRegistration    EUN1-ThingRegistration    UGW1-ThingRegistration    
APS1-TunnelsOpened        EUN1-TunnelsOpened        UGW1-TunnelsOpened        
APS2-IndexedData          EUW2-IndexedData          USE1-IndexedData          
APS2-JobExecutions        EUW2-JobExecutions        USE1-JobExecutions        
APS2-Queries              EUW2-Queries              USE1-Queries              
APS2-ThingRegistration    EUW2-ThingRegistration    USE1-ThingRegistration    
APS2-TunnelsOpened        EUW2-TunnelsOpened        USE1-TunnelsOpened        
APS3-IndexedData          EUW3-IndexedData          USE2-IndexedData          
APS3-JobExecutions        EUW3-JobExecutions        USE2-JobExecutions        
APS3-Queries              EUW3-Queries              USE2-Queries              
APS3-ThingRegistration    EUW3-ThingRegistration    USE2-ThingRegistration    
APS3-TunnelsOpened        EUW3-TunnelsOpened        USE2-TunnelsOpened        

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

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 *