AWS IoT Analytics 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 Analytics.

Note: All the list below are in alphabetical order.

Service Code: AWSIoTAnalytics

Python Code to get Attribute Names for AWS IoT Analytics using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS IoT Analytics


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

import boto3

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

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

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='AWSIoTAnalytics',
        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 Analytics

Attribute Name: group
Values:

IoTAnalytics - Custom Analysis Execution - 1-ACU
IoTAnalytics - Custom Analysis Execution - 2-ACU
IoTAnalytics - Processed Storage
IoTAnalytics - ProcessingByte
IoTAnalytics - Raw Storage
IoTAnalytics - Scanning

Attribute Name: location
Values:

Asia Pacific (Sydney)
Asia Pacific (Tokyo)
EU (Frankfurt)
EU (Ireland)
US East (N. Virginia)
US East (Ohio)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: operation
Values:

CreateDatasetContent
DataProcessing
ProcessedDataStorage
RawDataStorage

Attribute Name: productFamily
Values:

IoTAnalytics

Attribute Name: servicecode
Values:

AWSIoTAnalytics

Attribute Name: servicename
Values:

AWS IoT Analytics

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

APN1-1-AnalysisComputeHour
APN1-2-AnalysisComputeHour
APN1-DataProcessing-Bytes
APN1-DataScanned-TB
APN1-ProcessedStorage-ByteHrs
APN1-RawStorage-ByteHrs
APS2-1-AnalysisComputeHour
APS2-2-AnalysisComputeHour
APS2-DataProcessing-Bytes
APS2-DataScanned-TB
APS2-ProcessedStorage-ByteHrs
APS2-RawStorage-ByteHrs
EUC1-1-AnalysisComputeHour
EUC1-2-AnalysisComputeHour
EUC1-DataProcessing-Bytes
EUC1-DataScanned-TB
EUC1-ProcessedStorage-ByteHrs
EUC1-RawStorage-ByteHrs
EUW1-1-AnalysisComputeHour
EUW1-2-AnalysisComputeHour
EUW1-DataProcessing-Bytes
EUW1-DataScanned-TB
EUW1-ProcessedStorage-ByteHrs
EUW1-RawStorage-ByteHrs
USE1-1-AnalysisComputeHour
USE1-2-AnalysisComputeHour
USE1-DataProcessing-Bytes
USE1-DataScanned-TB
USE1-ProcessedStorage-ByteHrs
USE1-RawStorage-ByteHrs
USE2-1-AnalysisComputeHour
USE2-2-AnalysisComputeHour
USE2-DataProcessing-Bytes
USE2-DataScanned-TB
USE2-ProcessedStorage-ByteHrs
USE2-RawStorage-ByteHrs
USW2-1-AnalysisComputeHour
USW2-2-AnalysisComputeHour
USW2-DataProcessing-Bytes
USW2-DataScanned-TB
USW2-ProcessedStorage-ByteHrs
USW2-RawStorage-ByteHrs

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

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 *