AWS X-Ray Price List API all Attribute Names and Values


Last Updated on April 29, 2021

Below is a reference for all attribute names and attribute values in AWS Price List API for AWS X-Ray.

Note: All the list below are in alphabetical order.

Service Code: AWSXRay

Python Code to get Attribute Names for AWS X-Ray using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS X-Ray


Python Code to get the Attribute Values List for AWS X-Ray using Boto3

import boto3

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

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

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='AWSXRay',
        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 X-Ray

Attribute Name: group
Values:

Traces Accessed
Traces Retrieved
Traces Scanned
Traces Stored
Traces Stored Insights

Attribute Name: groupDescription
Values:

Number of X-Ray insights traces stored in the AWS X-Ray service
Number of X-Ray traces accessed and retrieved from the AWS X-Ray service
Number of X-Ray traces accessed and scanned from the AWS X-Ray service
Number of X-Ray traces accessed from the AWS X-Ray service
Number of X-Ray traces stored in the AWS X-Ray service

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: operation
Values:

XRay-Traces-Retrieved
XRay-Traces-Scanned

Attribute Name: productFamily
Values:

Developer Tools

Attribute Name: Restriction
Values:

Limited SKU Usage

Attribute Name: servicecode
Values:

AWSXRay

Attribute Name: servicename
Values:

AWS X-Ray

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

AFS1-XRay-InsightsTracesStored    EUN1-XRay-InsightsTracesStored    USE1-XRay-TracesStored            
AFS1-XRay-TracesAccessed          EUN1-XRay-TracesAccessed          USE2-XRay-InsightsTracesStored    
AFS1-XRay-TracesStored            EUN1-XRay-TracesStored            USE2-XRay-TracesAccessed          
APE1-XRay-InsightsTracesStored    EUS1-XRay-InsightsTracesStored    USE2-XRay-TracesStored            
APE1-XRay-TracesAccessed          EUS1-XRay-TracesAccessed          USW1-XRay-InsightsTracesStored    
APE1-XRay-TracesStored            EUS1-XRay-TracesStored            USW1-XRay-TracesAccessed          
APN1-XRay-InsightsTracesStored    EUW1-XRay-InsightsTracesStored    USW1-XRay-TracesStored            
APN1-XRay-TracesAccessed          EUW1-XRay-TracesAccessed          USW2-XRay-InsightsTracesStored    
APN1-XRay-TracesStored            EUW1-XRay-TracesStored            USW2-XRay-TracesAccessed          
APN2-XRay-InsightsTracesStored    EUW2-XRay-InsightsTracesStored    USW2-XRay-TracesStored            
APN2-XRay-TracesAccessed          EUW2-XRay-TracesAccessed          
APN2-XRay-TracesStored            EUW2-XRay-TracesStored            
APN3-XRay-InsightsTracesStored    EUW3-XRay-InsightsTracesStored    
APN3-XRay-TracesAccessed          EUW3-XRay-TracesStored            
APN3-XRay-TracesStored            Global-XRay-TracesAccessed        
APS1-XRay-InsightsTracesStored    Global-XRay-TracesStored          
APS1-XRay-TracesAccessed          MES1-XRay-InsightsTracesStored    
APS1-XRay-TracesStored            MES1-XRay-TracesAccessed          
APS2-XRay-InsightsTracesStored    MES1-XRay-TracesStored            
APS2-XRay-TracesAccessed          SAE1-XRay-InsightsTracesStored    
APS2-XRay-TracesStored            SAE1-XRay-TracesAccessed          
APS3-XRay-InsightsTracesStored    SAE1-XRay-TracesStored            
APS3-XRay-TracesAccessed          UGE1-XRay-InsightsTracesStored    
APS3-XRay-TracesStored            UGE1-XRay-TracesAccessed          
CAN1-XRay-InsightsTracesStored    UGE1-XRay-TracesStored            
CAN1-XRay-TracesAccessed          UGW1-XRay-InsightsTracesStored    
CAN1-XRay-TracesStored            UGW1-XRay-TracesAccessed          
EUC1-XRay-InsightsTracesStored    UGW1-XRay-TracesStored            
EUC1-XRay-TracesAccessed          USE1-XRay-InsightsTracesStored    
EUC1-XRay-TracesStored            USE1-XRay-TracesAccessed          

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

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 *