Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon Managed Workflows for Apache Airflow (MWAA).
Note: All the list below are in alphabetical order.
Service Code: AmazonMWAA
Python Code to get Attribute Names for Amazon Managed Workflows for Apache Airflow (MWAA) using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonMWAA')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for Amazon Managed Workflows for Apache Airflow (MWAA)
Python Code to get the Attribute Values List for Amazon Managed Workflows for Apache Airflow (MWAA) using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonMWAA')
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='AmazonMWAA',
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 Amazon Managed Workflows for Apache Airflow (MWAA)
Attribute Name: location
Values:
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
EU (Frankfurt)
EU (Ireland)
EU (Stockholm)
US East (N. Virginia)
US East (Ohio)
US West (Oregon)
Attribute Name: locationType
Values:
AWS Region
Attribute Name: servicecode
Values:
AmazonMWAA
Attribute Name: servicename
Values:
AmazonMWAA
Attribute Name: size
Values:
Large
Medium
Small
Attribute Name: termType
Values:
OnDemand
Attribute Name: type
Values:
Environment
Standard
Worker
Attribute Name: usagetype
Values:
APN1-Airflow-LargeEnvironment EUC1-Airflow-MediumEnvironment USW2-Airflow-SmallEnvironment
APN1-Airflow-LargeWorker EUC1-Airflow-MediumWorker USW2-Airflow-SmallWorker
APN1-Airflow-MediumEnvironment EUC1-Airflow-SmallEnvironment USW2-Airflow-StandardDatabaseStorage
APN1-Airflow-MediumWorker EUC1-Airflow-SmallWorker
APN1-Airflow-SmallEnvironment EUC1-Airflow-StandardDatabaseStorage
APN1-Airflow-SmallWorker EUN1-Airflow-LargeEnvironment
APN1-Airflow-StandardDatabaseStorage EUN1-Airflow-LargeWorker
APS1-Airflow-LargeEnvironment EUN1-Airflow-MediumEnvironment
APS1-Airflow-LargeWorker EUN1-Airflow-MediumWorker
APS1-Airflow-MediumEnvironment EUN1-Airflow-SmallEnvironment
APS1-Airflow-MediumWorker EUN1-Airflow-SmallWorker
APS1-Airflow-SmallEnvironment EUN1-Airflow-StandardDatabaseStorage
APS1-Airflow-SmallWorker USE1-Airflow-LargeEnvironment
APS1-Airflow-StandardDatabaseStorage USE1-Airflow-LargeWorker
APS2-Airflow-LargeEnvironment USE1-Airflow-MediumEnvironment
APS2-Airflow-LargeWorker USE1-Airflow-MediumWorker
APS2-Airflow-MediumEnvironment USE1-Airflow-SmallEnvironment
APS2-Airflow-MediumWorker USE1-Airflow-SmallWorker
APS2-Airflow-SmallEnvironment USE1-Airflow-StandardDatabaseStorage
APS2-Airflow-SmallWorker USE2-Airflow-LargeEnvironment
APS2-Airflow-StandardDatabaseStorage USE2-Airflow-LargeWorker
EU-Airflow-LargeEnvironment USE2-Airflow-MediumEnvironment
EU-Airflow-LargeWorker USE2-Airflow-MediumWorker
EU-Airflow-MediumEnvironment USE2-Airflow-SmallEnvironment
EU-Airflow-MediumWorker USE2-Airflow-SmallWorker
EU-Airflow-SmallEnvironment USE2-Airflow-StandardDatabaseStorage
EU-Airflow-SmallWorker USW2-Airflow-LargeEnvironment
EU-Airflow-StandardDatabaseStorage USW2-Airflow-LargeWorker
EUC1-Airflow-LargeEnvironment USW2-Airflow-MediumEnvironment
EUC1-Airflow-LargeWorker USW2-Airflow-MediumWorker
Attribute Name: version
Values:
1
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Managed Workflows for Apache Airflow (MWAA).
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.