AWS Network Firewall 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 Network Firewall.

Note: All the list below are in alphabetical order.

Service Code: AWSNetworkFirewall

Python Code to get Attribute Names for AWS Network Firewall using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS Network Firewall


Python Code to get the Attribute Values List for AWS Network Firewall using Boto3

import boto3

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

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

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='AWSNetworkFirewall',
        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 Network Firewall

Attribute Name: location
Values:

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

Operation:Metering
Operation:NormalUsage

Attribute Name: productFamily
Values:

AWS Firewall
AWS Network Firewall

Attribute Name: servicecode
Values:

AWSNetworkFirewall

Attribute Name: servicename
Values:

AWSNetworkFirewall

Attribute Name: subcategory
Values:

Endpoint
Metrics
Throughput

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

AFS1-Endpoint-Hour
AFS1-Traffic-GB-Processed
APE1-Endpoint-Hour
APE1-Traffic-GB-Processed
APN1-Endpoint-Hour
APN1-Traffic-GB-Processed
APN2-Endpoint-Hour
APN2-Traffic-GB-Processed
APN3-Endpoint-Hour
APN3-Traffic-GB-Processed
APS1-Endpoint-Hour
APS1-Traffic-GB-Processed
APS2-Endpoint-Hour
APS2-Traffic-GB-Processed
APS3-Endpoint-Hour
APS3-Traffic-GB-Processed
CAN1-Endpoint-Hour
CAN1-Traffic-GB-Processed
EU-Endpoint-Hour
EU-Traffic-GB-Processed
EUC1-Endpoint-Hour
EUC1-Traffic-GB-Processed
EUN1-Endpoint-Hour
EUN1-Traffic-GB-Processed
EUS1-Endpoint-Hour
EUS1-Traffic-GB-Processed
EUW2-Endpoint-Hour
EUW2-Traffic-GB-Processed
EUW3-Endpoint-Hour
EUW3-Traffic-GB-Processed
MES1-Endpoint-Hour
MES1-Traffic-GB-Processed
SAE1-Endpoint-Hour
SAE1-Traffic-GB-Processed
USE1-Endpoint-Hour
USE1-Traffic-GB-Processed
USE2-Endpoint-Hour
USE2-Traffic-GB-Processed
USW1-Endpoint-Hour
USW1-Traffic-GB-Processed
USW2-Endpoint-Hour
USW2-Traffic-GB-Processed

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

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 *