AWS Elemental MediaPackage 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 AWS Elemental MediaPackage.

Note: All the list below are in alphabetical order.

Service Code: AWSElementalMediaPackage

Python Code to get Attribute Names for AWS Elemental MediaPackage using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS Elemental MediaPackage


Python Code to get the Attribute Values List for AWS Elemental MediaPackage using Boto3

import boto3

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

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

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='AWSElementalMediaPackage',
        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 Elemental MediaPackage

Attribute Name: location
Values:

Asia Pacific (Mumbai)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
EU (Frankfurt)
EU (Ireland)
EU (London)
EU (Paris)
EU (Stockholm)
South America (Sao Paulo)
US East (N. Virginia)
US West (N. California)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: productFamily
Values:

Packaging Data Transfer

Attribute Name: servicecode
Values:

AWSElementalMediaPackage

Attribute Name: servicename
Values:

AWS Elemental MediaPackage

Attribute Name: termType
Values:

OnDemand

Attribute Name: transferType
Values:

Ingest
Origination-Packaging
VOD-Origination-Packaging

Attribute Name: usagetype
Values:

APN1-EMP-ingest-bytes
APN1-EMP-origin-packaging-bytes
APN1-EMP-vod-origin-pkg-bytes
APN2-EMP-ingest-bytes
APN2-EMP-origin-packaging-bytes
APN2-EMP-vod-origin-pkg-bytes
APS1-EMP-ingest-bytes
APS1-EMP-origin-packaging-bytes
APS1-EMP-vod-origin-pkg-bytes
APS2-EMP-ingest-bytes
APS2-EMP-origin-packaging-bytes
APS2-EMP-vod-origin-pkg-bytes
APS3-EMP-ingest-bytes
APS3-EMP-origin-packaging-bytes
APS3-EMP-vod-origin-pkg-bytes
EU-EMP-ingest-bytes
EU-EMP-origin-packaging-bytes
EU-EMP-vod-origin-pkg-bytes
EUC1-EMP-ingest-bytes
EUC1-EMP-origin-packaging-bytes
EUC1-EMP-vod-origin-pkg-bytes
EUN1-EMP-ingest-bytes
EUN1-EMP-origin-packaging-bytes
EUN1-EMP-vod-origin-pkg-bytes
EUW2-EMP-ingest-bytes
EUW2-EMP-origin-packaging-bytes
EUW2-EMP-vod-origin-pkg-bytes
EUW3-EMP-ingest-bytes
EUW3-EMP-origin-packaging-bytes
EUW3-EMP-vod-origin-pkg-bytes
SAE1-EMP-ingest-bytes
SAE1-EMP-origin-packaging-bytes
SAE1-EMP-vod-origin-pkg-bytes
USE1-EMP-ingest-bytes
USE1-EMP-origin-packaging-bytes
USE1-EMP-vod-origin-pkg-bytes
USW1-EMP-ingest-bytes
USW1-EMP-origin-packaging-bytes
USW1-EMP-vod-origin-pkg-bytes
USW2-EMP-ingest-bytes
USW2-EMP-origin-packaging-bytes
USW2-EMP-vod-origin-pkg-bytes

We hope the above list of attribute names and values helps when using the AWS Price List API for AWS Elemental MediaPackage.

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 *