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

Note: All the list below are in alphabetical order.

Service Code: AWSAmplify

Python Code to get Attribute Names for AWSAmplify using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWSAmplify


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

import boto3

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

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

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

Attribute Name: datatransferout
Values:

DataTransferOut
NoDataTransferOut

Attribute Name: instancetype
Values:

InstanceType

Attribute Name: location
Values:

Asia Pacific (Hong Kong)
Asia Pacific (Mumbai)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
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:

AWS Amplify

Attribute Name: servicecode
Values:

AWSAmplify

Attribute Name: servicename
Values:

AWS Amplify

Attribute Name: storage
Values:

NoStorage
Storage

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

APE1-BuildDuration      EUS1-BuildDuration      
APE1-DataStorage        EUS1-DataStorage        
APE1-DataTransferOut    EUS1-DataTransferOut    
APN1-BuildDuration      EUW2-BuildDuration      
APN1-DataStorage        EUW2-DataStorage        
APN1-DataTransferOut    EUW2-DataTransferOut    
APN2-BuildDuration      EUW3-BuildDuration      
APN2-DataStorage        EUW3-DataStorage        
APN2-DataTransferOut    EUW3-DataTransferOut    
APS1-BuildDuration      MES1-BuildDuration      
APS1-DataStorage        MES1-DataStorage        
APS1-DataTransferOut    MES1-DataTransferOut    
APS2-BuildDuration      SAE1-BuildDuration      
APS2-DataStorage        SAE1-DataStorage        
APS2-DataTransferOut    SAE1-DataTransferOut    
APS3-BuildDuration      USE1-BuildDuration      
APS3-DataStorage        USE1-DataStorage        
APS3-DataTransferOut    USE1-DataTransferOut    
CAN1-BuildDuration      USE2-BuildDuration      
CAN1-DataStorage        USE2-DataStorage        
CAN1-DataTransferOut    USE2-DataTransferOut    
EU-BuildDuration        USW1-BuildDuration      
EU-DataStorage          USW1-DataStorage        
EU-DataTransferOut      USW1-DataTransferOut    
EUC1-BuildDuration      USW2-BuildDuration      
EUC1-DataStorage        USW2-DataStorage        
EUC1-DataTransferOut    USW2-DataTransferOut    
EUN1-BuildDuration      
EUN1-DataStorage        
EUN1-DataTransferOut    

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

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 *