Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon Rekognition.
Note: All the list below are in alphabetical order.
Service Code: AmazonRekognition
Python Code to get Attribute Names for AmazonRekognition using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonRekognition')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for AmazonRekognition
- group
- groupDescription
- location
- locationType
- productFamily
- Restriction
- servicecode
- servicename
- termType
- usagetype
Python Code to get the Attribute Values List for AmazonRekognition using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonRekognition')
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='AmazonRekognition',
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 AmazonRekognition
Attribute Name: group
Values:
Face Vector Storage
Inference API
Rekognition Image API Requests
Rekognition Video API Requests
Rekognition Video API Requests - Archived Content
Rekognition Video API Requests - Live Streams
Training API
Attribute Name: groupDescription
Values:
Number of Face Vectors stored
Number of images processed using DetectLabels, DetectFaces, CompareFaces, SearchByImage, DetectModerationLabels, RecognizeCelebrities, IndexFaces APIs OR Number of calls made to SearchFaceById, ListFace Rekognition Image APIs
Number of minutes of Archived Video processed for shot detection
Number of minutes of Archived video processed using LabelDetection, FaceDetection, PersonTracking, CelebrityRecognition, ContentModeration and FaceSearch using Rekognition Video APIs
Number of minutes of Archived Video processed using Technical Cues detection
Number of minutes of inference with a custom model
Number of minutes of Live stream video processed using StreamProcessor Rekognition Video APIs
Number of minutes of video processed using Rekognition Video APIs
Number of Minutes that a custom model is trained
Attribute Name: location
Values:
Any
Asia Pacific (Mumbai)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
AWS GovCloud (US-West)
EU (Frankfurt)
EU (Ireland)
EU (London)
US East (N. Virginia)
US East (Ohio)
US West (N. California)
US West (Oregon)
Attribute Name: locationType
Values:
AWS Region
Attribute Name: productFamily
Values:
Rekognition API
Rekognition Image API
Rekognition Storage
Rekognition Video API
Rekognition Video API - Archived Content
Rekognition Video API - Live Streams
Attribute Name: Restriction
Values:
Limited SKU Usage
Attribute Name: servicecode
Values:
AmazonRekognition
Attribute Name: servicename
Values:
Amazon Rekognition
Attribute Name: termType
Values:
OnDemand
Attribute Name: usagetype
Values:
APN1-FaceVectorsStored APS3-ImagesProcessed UGW1-MinsOfArchVideoProcessed USW2-minutestrained
APN1-ImagesProcessed APS3-MinsOfArchVideoProcessed UGW1-MinsOfArchVideoProcessed:Shot
APN1-inferenceminutes APS3-MinsOfArchVideoProcessed:Shot UGW1-MinsOfArchVideoProcessed:TechCue
APN1-MinsOfArchVideoProcessed APS3-MinsOfArchVideoProcessed:TechCue USE1-FaceVectorsStored
APN1-MinsOfArchVideoProcessed:Shot EU-FaceVectorsStored USE1-ImagesProcessed
APN1-MinsOfArchVideoProcessed:TechCue EU-inferenceminutes USE1-inferenceminutes
APN1-MinsOfLiveVideoProcessed EU-MinsOfArchVideoProcessed USE1-MinsOfArchVideoProcessed
APN1-minutestrained EU-MinsOfArchVideoProcessed:Shot USE1-MinsOfArchVideoProcessed:Shot
APN2-FaceVectorsStored EU-MinsOfArchVideoProcessed:TechCue USE1-MinsOfArchVideoProcessed:TechCue
APN2-ImagesProcessed EU-MinsOfLiveVideoProcessed USE1-MinsOfLiveVideoProcessed
APN2-inferenceminutes EU-minutestrained USE1-minutestrained
APN2-MinsOfArchVideoProcessed EUC1-FaceVectorsStored USE2-FaceVectorsStored
APN2-MinsOfArchVideoProcessed:Shot EUC1-ImagesProcessed USE2-ImagesProcessed
APN2-MinsOfArchVideoProcessed:TechCue EUC1-MinsOfArchVideoProcessed USE2-inferenceminutes
APN2-minutestrained EUC1-MinsOfArchVideoProcessed:Shot USE2-MinsOfArchVideoProcessed
APS1-FaceVectorsStored EUC1-MinsOfArchVideoProcessed:TechCue USE2-MinsOfArchVideoProcessed:Shot
APS1-ImagesProcessed EUC1-MinsOfLiveVideoProcessed USE2-MinsOfArchVideoProcessed:TechCue
APS1-inferenceminutes EUW1-ImagesProcessed USE2-minutestrained
APS1-MinsOfArchVideoProcessed EUW2-FaceVectorsStored USW1-FaceVectorsStored
APS1-MinsOfArchVideoProcessed:Shot EUW2-ImagesProcessed USW1-ImagesProcessed
APS1-MinsOfArchVideoProcessed:TechCue EUW2-MinsOfArchVideoProcessed USW1-MinsOfArchVideoProcessed
APS1-minutestrained EUW2-MinsOfArchVideoProcessed:Shot USW1-MinsOfArchVideoProcessed:Shot
APS2-FaceVectorsStored EUW2-MinsOfArchVideoProcessed:TechCue USW1-MinsOfArchVideoProcessed:TechCue
APS2-ImagesProcessed Global-FaceVectorsStored USW2-FaceVectorsStored
APS2-inferenceminutes Global-ImagesProcessed USW2-ImagesProcessed
APS2-MinsOfArchVideoProcessed Global-inferenceminutes USW2-inferenceminutes
APS2-MinsOfArchVideoProcessed:Shot Global-MinutesOfVideoProcessed USW2-MinsOfArchVideoProcessed
APS2-MinsOfArchVideoProcessed:TechCue Global-minutestrained USW2-MinsOfArchVideoProcessed:Shot
APS2-minutestrained UGW1-FaceVectorsStored USW2-MinsOfArchVideoProcessed:TechCue
APS3-FaceVectorsStored UGW1-ImagesProcessed USW2-MinsOfLiveVideoProcessed
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Rekognition.
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.