Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for AWS Shield.
Note: All the list below are in alphabetical order.
Service Code: AWSShield
Python Code to get Attribute Names for AWS Shield using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AWSShield')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for AWS Shield
- description
- fromLocation
- fromLocationType
- location
- locationType
- operation
- productFamily
- resourceType
- servicecode
- servicename
- termType
- toLocation
- toLocationType
- usagetype
Python Code to get the Attribute Values List for AWS Shield using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AWSShield')
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='AWSShield',
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 Shield
Attribute Name: description
Values:
Monthly fees for AWS Shield Advanced
Attribute Name: fromLocation
Values:
Africa (Cape Town)
Asia Pacific (Hong Kong)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
EU (Frankfurt)
EU (Ireland)
EU (London)
EU (Milan)
EU (Stockholm)
Global
Middle East (Bahrain)
US East (N. Virginia)
US East (Ohio)
US West (N. California)
US West (Oregon)
Attribute Name: fromLocationType
Values:
AWS Edge Location
AWS Region
Attribute Name: location
Values:
Any
Attribute Name: locationType
Values:
AWS Region
Attribute Name: operation
Values:
CloudFrontDistribution
GlobalAccelerator
LoadBalancing
ShieldProtectionEIP
Attribute Name: productFamily
Values:
Shield Advanced Monthly Fee
Shield-DataTransfer
Attribute Name: resourceType
Values:
CloudFront
GlobalAccelerator
LoadBalancing
ShieldProtectionEIP
Attribute Name: servicecode
Values:
AWSShield
Attribute Name: servicename
Values:
AWS Shield
Attribute Name: termType
Values:
OnDemand
Attribute Name: toLocation
Values:
External
Attribute Name: toLocationType
Values:
Other
Attribute Name: usagetype
Values:
AFS1-DataTransfer-Shield-Bytes
APE1-DataTransfer-Shield-Bytes
APN1-DataTransfer-Shield-Bytes
APN2-DataTransfer-Shield-Bytes
APS1-DataTransfer-Shield-Bytes
APS2-DataTransfer-Shield-Bytes
EU-DataTransfer-Shield-Bytes
EUC1-DataTransfer-Shield-Bytes
EUN1-DataTransfer-Shield-Bytes
EUS1-DataTransfer-Shield-Bytes
EUW2-DataTransfer-Shield-Bytes
Global-DataTransfer-Shield-Bytes
MES1-DataTransfer-Shield-Bytes
Shield-Monthly-Fee
USE1-DataTransfer-Shield-Bytes
USE2-DataTransfer-Shield-Bytes
USW1-DataTransfer-Shield-Bytes
USW2-DataTransfer-Shield-Bytes
We hope the above list of attribute names and values helps when using the AWS Price List API for AWS Shield.
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.