Amazon Elastic Transcoder AWS 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 Amazon Elastic Transcoder.

Note: All the list below are in alphabetical order.

Service Code: AmazonETS

Python Code to get Attribute Names for Amazon Elastic Transcoder using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for Amazon Elastic Transcoder


Python Code to get the Attribute Values List for Amazon Elastic Transcoder using Boto3

import boto3

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

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

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='AmazonETS',
        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 Elastic Transcoder

Attribute Name: location
Values:

Any
Asia Pacific (Mumbai)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
EU (Ireland)
US East (N. Virginia)
US West (N. California)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: productFamily
Values:

Audio
High Definition
Standard Definition

Attribute Name: servicecode
Values:

AmazonETS

Attribute Name: termType
Values:

OnDemand

Attribute Name: transcodingResult
Values:

Error
Success

Attribute Name: usagetype
Values:

APN1-ets-audio-error        EU-ets-audio-error          
APN1-ets-audio-success      EU-ets-audio-success        
APN1-ets-hd-error           EU-ets-hd-error             
APN1-ets-hd-success         EU-ets-hd-success           
APN1-ets-sd-error           EU-ets-sd-error             
APN1-ets-sd-success         EU-ets-sd-success           
APS1-ets-audio-error        global-ets-audio-success    
APS1-ets-audio-success      Global-ets-hd-success       
APS1-ets-hd-error           Global-ets-sd-success       
APS1-ets-hd-success         USW1-ets-audio-error        
APS1-ets-sd-error           USW1-ets-audio-success      
APS1-ets-sd-success         USW1-ets-hd-error           
APS2-ets-audio-error        USW1-ets-hd-success         
APS2-ets-audio-success      USW1-ets-sd-error           
APS2-ets-hd-error           USW1-ets-sd-success         
APS2-ets-hd-success         USW2-ets-audio-error        
APS2-ets-sd-error           USW2-ets-audio-success      
APS2-ets-sd-success         USW2-ets-hd-error           
APS3-ets-audio-error        USW2-ets-hd-success         
APS3-ets-audio-success      USW2-ets-sd-error           
APS3-ets-hd-error           USW2-ets-sd-success         
APS3-ets-hd-success         
APS3-ets-sd-error           
APS3-ets-sd-success         
ets-audio-error             
ets-audio-success           
ets-hd-error                
ets-hd-success              
ets-sd-error                
ets-sd-success              

Attribute Name: videoResolution
Values:

720p and above
Audio only
Less than 720p

We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Elastic Transcoder.

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 *