Amazon SQS 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 Simple Queue Service (SQS).

Note: All the list below are in alphabetical order.

Service Code: AWSQueueService

Python Code to get Attribute Names for AWSQueueService using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWSQueueService


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

import boto3

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

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

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

Attribute Name: group
Values:

SQS-APIRequest-Tier1

Attribute Name: groupDescription
Values:

Amazon SQS Requests

Attribute Name: location
Values:

Africa (Cape Town)
Any
Asia Pacific (Hong Kong)
Asia Pacific (Mumbai)
Asia Pacific (Osaka)
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: messageDeliveryFrequency
Values:

At Least Once
Exactly Once

Attribute Name: messageDeliveryOrder
Values:

Guaranteed
Not Guaranteed

Attribute Name: productFamily
Values:

API Request

Attribute Name: queueType
Values:

Any
FIFO (first-in, first-out)
Standard

Attribute Name: Restriction
Values:

Limited SKU Usage

Attribute Name: servicecode
Values:

AWSQueueService

Attribute Name: servicename
Values:

Amazon Simple Queue Service

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

AFS1-Requests-FIFO-Tier1
AFS1-Requests-Tier1
APE1-Requests-FIFO-Tier1
APE1-Requests-Tier1
APN1-Requests-FIFO-Tier1
APN1-Requests-Tier1
APN2-Requests-FIFO-Tier1
APN2-Requests-Tier1
APN3-Requests-FIFO-Tier1
APN3-Requests-Tier1
APS1-Requests-FIFO-Tier1
APS1-Requests-Tier1
APS2-Requests-FIFO-Tier1
APS2-Requests-Tier1
APS3-Requests-FIFO-Tier1
APS3-Requests-Tier1
CAN1-Requests-FIFO-Tier1
CAN1-Requests-Tier1
EU-Requests-FIFO-Tier1
EU-Requests-Tier1
EUC1-Requests-FIFO-Tier1
EUC1-Requests-Tier1
EUN1-Requests-FIFO-Tier1
EUN1-Requests-Tier1
EUS1-Requests-FIFO-Tier1
EUS1-Requests-Tier1
EUW2-Requests-FIFO-Tier1
EUW2-Requests-Tier1
EUW3-Requests-FIFO-Tier1
EUW3-Requests-Tier1
Global-Requests
MES1-Requests-FIFO-Tier1
MES1-Requests-Tier1
Requests-FIFO-RBP
Requests-RBP
SAE1-Requests-FIFO-Tier1
SAE1-Requests-Tier1
UGE1-Requests-FIFO-Tier1
UGE1-Requests-Tier1
UGW1-Requests-FIFO-Tier1
UGW1-Requests-Tier1
USE2-Requests-FIFO-Tier1
USE2-Requests-Tier1
USW1-Requests-FIFO-Tier1
USW1-Requests-Tier1
USW2-Requests-FIFO-Tier1
USW2-Requests-Tier1

We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Simple Queue Service (SQS).

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 *