Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon AppFlow.
Note: All the list below are in alphabetical order.
Service Code: AppFlow
Python Code to get Attribute Names for Amazon AppFlow using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AppFlow')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for Amazon AppFlow
Python Code to get the Attribute Values List for Amazon AppFlow using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AppFlow')
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='AppFlow',
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 AppFlow
Attribute Name: flow
Values:
Data processing outside AWS
Data processing over PL
Data processing within AWS
Flow Run
Attribute Name: location
Values:
Asia Pacific (Mumbai)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
Canada (Central)
EU (Frankfurt)
EU (Ireland)
EU (London)
EU (Paris)
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:
DataProcessing
ExecuteFlow
PrivateLinkDataProcessing
Attribute Name: productFamily
Values:
API Calls
Attribute Name: servicecode
Values:
AppFlow
Attribute Name: servicename
Values:
Amazon AppFlow
Attribute Name: termType
Values:
OnDemand
Attribute Name: usagetype
Values:
APN1-DataProcDestAWS-Bytes EUC1-DataProcDestExt-Bytes
APN1-DataProcDestAWSPL-Bytes EUC1-FlowRun
APN1-DataProcDestExt-Bytes EUW2-DataProcDestAWS-Bytes
APN1-FlowRun EUW2-DataProcDestAWSPL-Bytes
APN2-DataProcDestAWS-Bytes EUW2-DataProcDestExt-Bytes
APN2-DataProcDestAWSPL-Bytes EUW2-FlowRun
APN2-DataProcDestExt-Bytes EUW3-DataProcDestAWS-Bytes
APN2-FlowRun EUW3-DataProcDestAWSPL-Bytes
APS1-DataProcDestAWS-Bytes EUW3-DataProcDestExt-Bytes
APS1-DataProcDestAWSPL-Bytes EUW3-FlowRun
APS1-DataProcDestExt-Bytes SAE1-DataProcDestAWS-Bytes
APS1-FlowRun SAE1-DataProcDestAWSPL-Bytes
APS2-DataProcDestAWS-Bytes SAE1-DataProcDestExt-Bytes
APS2-DataProcDestAWSPL-Bytes SAE1-FlowRun
APS2-DataProcDestExt-Bytes USE1-DataProcDestAWS-Bytes
APS2-FlowRun USE1-DataProcDestAWSPL-Bytes
APS3-DataProcDestAWS-Bytes USE1-DataProcDestExt-Bytes
APS3-DataProcDestAWSPL-Bytes USE1-FlowRun
APS3-DataProcDestExt-Bytes USE2-DataProcDestAWS-Bytes
APS3-FlowRun USE2-DataProcDestAWSPL-Bytes
CAN1-DataProcDestAWS-Bytes USE2-DataProcDestExt-Bytes
CAN1-DataProcDestAWSPL-Bytes USE2-FlowRun
CAN1-DataProcDestExt-Bytes USW1-DataProcDestAWS-Bytes
CAN1-FlowRun USW1-DataProcDestAWSPL-Bytes
EU-DataProcDestAWS-Bytes USW1-DataProcDestExt-Bytes
EU-DataProcDestAWSPL-Bytes USW1-FlowRun
EU-DataProcDestExt-Bytes USW2-DataProcDestAWS-Bytes
EU-FlowRun USW2-DataProcDestAWSPL-Bytes
EUC1-DataProcDestAWS-Bytes USW2-DataProcDestExt-Bytes
EUC1-DataProcDestAWSPL-Bytes USW2-FlowRun
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon AppFlow.
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.