Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon Macie.
Note: All the list below are in alphabetical order.
Service Code: AmazonMacie
Python Code to get Attribute Names for Amazon Macie using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonMacie')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for Amazon Macie
- activityType
- classificationType
- contentSource
- contentType
- group
- location
- locationType
- logsSource
- logsType
- productFamily
- servicecode
- servicename
- termType
- usagetype
Python Code to get the Attribute Values List for Amazon Macie using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonMacie')
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='AmazonMacie',
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 Macie
Attribute Name: activityType
Values:
Aggregation
Classification
Results Storage
Attribute Name: classificationType
Values:
Full
Attribute Name: contentSource
Values:
AWS
Attribute Name: contentType
Values:
AmazonS3
Attribute Name: group
Values:
Security Services - Amazon Macie Daily Usage
Security Services - Amazon Macie Free Data Inventory Evaluation
Security Services - Amazon Macie Paid Data Inventory Evaluation
Security Services - Amazon Macie Sensitive Data Discovery
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: logsSource
Values:
AWS
Attribute Name: logsType
Values:
AWSCloudTrail
Attribute Name: productFamily
Values:
Amazon Macie
AWS Security Services - Macie Content Processing
AWS Security Services - Macie Log Processing
Attribute Name: servicecode
Values:
AmazonMacie
Attribute Name: servicename
Values:
Amazon Macie
Attribute Name: termType
Values:
OnDemand
Attribute Name: usagetype
Values:
AFS1-FreeDataInventoryEvaluation APS3-PaidDataInventoryEvaluation MES1-FreeDataInventoryEvaluation
AFS1-MacieDailyUsage APS3-SensitiveDataDiscovery MES1-MacieDailyUsage
AFS1-PaidDataInventoryEvaluation CAN1-FreeDataInventoryEvaluation MES1-PaidDataInventoryEvaluation
AFS1-SensitiveDataDiscovery CAN1-MacieDailyUsage MES1-SensitiveDataDiscovery
APE1-FreeDataInventoryEvaluation CAN1-PaidDataInventoryEvaluation SAE1-FreeDataInventoryEvaluation
APE1-MacieDailyUsage CAN1-SensitiveDataDiscovery SAE1-MacieDailyUsage
APE1-PaidDataInventoryEvaluation EU-FreeDataInventoryEvaluation SAE1-PaidDataInventoryEvaluation
APE1-SensitiveDataDiscovery EU-MacieDailyUsage SAE1-SensitiveDataDiscovery
APN1-FreeDataInventoryEvaluation EU-PaidDataInventoryEvaluation USE1-EventsProcessing
APN1-MacieDailyUsage EU-SensitiveDataDiscovery USE1-FreeDataInventoryEvaluation
APN1-PaidDataInventoryEvaluation EUC1-FreeDataInventoryEvaluation USE1-MacieDailyUsage
APN1-SensitiveDataDiscovery EUC1-MacieDailyUsage USE1-PaidDataInventoryEvaluation
APN2-FreeDataInventoryEvaluation EUC1-PaidDataInventoryEvaluation USE1-S3ClassificationInfoStorage
APN2-MacieDailyUsage EUC1-SensitiveDataDiscovery USE1-S3ContentClassification
APN2-PaidDataInventoryEvaluation EUN1-FreeDataInventoryEvaluation USE1-SensitiveDataDiscovery
APN2-SensitiveDataDiscovery EUN1-MacieDailyUsage USE2-FreeDataInventoryEvaluation
APN3-FreeDataInventoryEvaluation EUN1-PaidDataInventoryEvaluation USE2-MacieDailyUsage
APN3-MacieDailyUsage EUN1-SensitiveDataDiscovery USE2-PaidDataInventoryEvaluation
APN3-PaidDataInventoryEvaluation EUS1-FreeDataInventoryEvaluation USE2-SensitiveDataDiscovery
APN3-SensitiveDataDiscovery EUS1-MacieDailyUsage USW1-FreeDataInventoryEvaluation
APS1-FreeDataInventoryEvaluation EUS1-PaidDataInventoryEvaluation USW1-MacieDailyUsage
APS1-MacieDailyUsage EUS1-SensitiveDataDiscovery USW1-PaidDataInventoryEvaluation
APS1-PaidDataInventoryEvaluation EUW2-FreeDataInventoryEvaluation USW1-SensitiveDataDiscovery
APS1-SensitiveDataDiscovery EUW2-MacieDailyUsage USW2-EventsProcessing
APS2-FreeDataInventoryEvaluation EUW2-PaidDataInventoryEvaluation USW2-FreeDataInventoryEvaluation
APS2-MacieDailyUsage EUW2-SensitiveDataDiscovery USW2-MacieDailyUsage
APS2-PaidDataInventoryEvaluation EUW3-FreeDataInventoryEvaluation USW2-PaidDataInventoryEvaluation
APS2-SensitiveDataDiscovery EUW3-MacieDailyUsage USW2-S3ClassificationInfoStorage
APS3-FreeDataInventoryEvaluation EUW3-PaidDataInventoryEvaluation USW2-S3ContentClassification
APS3-MacieDailyUsage EUW3-SensitiveDataDiscovery USW2-SensitiveDataDiscovery
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Macie.
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.