Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon Cloud Directory.
Note: All the list below are in alphabetical order.
Service Code: AmazonCloudDirectory
Python Code to get Attribute Names for Amazon Cloud Directory using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonCloudDirectory')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for Amazon Cloud Directory
- group
- groupDescription
- location
- locationType
- productFamily
- Restriction
- servicecode
- servicename
- storageClass
- termType
- usagetype
- volumeType
Python Code to get the Attribute Values List for Amazon Cloud Directory using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonCloudDirectory')
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='AmazonCloudDirectory',
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 Cloud Directory
Attribute Name: group
Values:
Tier1 Request
Tier2 Request
Attribute Name: groupDescription
Values:
Eventually Consistent Read Request
Write Request and Strongly Consistent Read Request
Attribute Name: location
Values:
Any
Asia Pacific (Singapore)
Asia Pacific (Sydney)
AWS GovCloud (US)
EU (Frankfurt)
EU (Ireland)
EU (London)
US East (N. Virginia)
US East (Ohio)
US West (Oregon)
Attribute Name: locationType
Values:
AWS Region
Attribute Name: productFamily
Values:
API Request
Storage
Attribute Name: Restriction
Values:
Limited SKU Usage
Attribute Name: servicecode
Values:
AmazonCloudDirectory
Attribute Name: servicename
Values:
Amazon Cloud Directory
Attribute Name: storageClass
Values:
General Purpose
Attribute Name: termType
Values:
OnDemand
Attribute Name: usagetype
Values:
APS1-Requests-Tier1
APS1-Requests-Tier2
APS1-TimedStorage-ByteHrs
APS2-Requests-Tier1
APS2-Requests-Tier2
APS2-TimedStorage-ByteHrs
EU-Requests-Tier1
EU-Requests-Tier2
EU-TimedStorage-ByteHrs
EUC1-Requests-Tier1
EUC1-Requests-Tier2
EUC1-TimedStorage-ByteHrs
EUW2-Requests-Tier1
EUW2-Requests-Tier2
EUW2-TimedStorage-ByteHrs
Global-Requests-Tier1
Global-Requests-Tier2
Global-TimedStorage-ByteHrs
UGW1-Requests-Tier1
UGW1-Requests-Tier2
UGW1-TimedStorage-ByteHrs
USE1-Requests-Tier1
USE1-Requests-Tier2
USE1-TimedStorage-ByteHrs
USE2-Requests-Tier1
USE2-Requests-Tier2
USE2-TimedStorage-ByteHrs
USW2-Requests-Tier1
USW2-Requests-Tier2
USW2-TimedStorage-ByteHrs
Attribute Name: volumeType
Values:
Standard
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Cloud Directory.
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.