Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon Interactive Video Service.
Note: All the list below are in alphabetical order.
Service Code: AmazonIVS
Python Code to get Attribute Names for Amazon Interactive Video Service using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonIVS')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for Amazon Interactive Video Service
- inputType
- location
- locationType
- outputType
- productFamily
- servicecode
- servicename
- termType
- transferType
- usagetype
Python Code to get the Attribute Values List for Amazon Interactive Video Service using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonIVS')
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='AmazonIVS',
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 Interactive Video Service
Attribute Name: inputType
Values:
Basic
NA
Standard
Attribute Name: location
Values:
Asia Pacific
Australia
Brazil
Europe
India
Korea
North America
Taiwan
Attribute Name: locationType
Values:
AWS Edge Location
Attribute Name: outputType
Values:
FullHD
HD
NA
SD
Attribute Name: productFamily
Values:
Streaming
Attribute Name: servicecode
Values:
AmazonIVS
Attribute Name: servicename
Values:
Amazon Interactive Video Service
Attribute Name: termType
Values:
OnDemand
Attribute Name: transferType
Values:
Input
Output
Attribute Name: usagetype
Values:
AP-Input-Basic-Hours
AP-Input-Standard-Hours
AP-Output-FullHD-Hours
AP-Output-HD-Hours
AP-Output-SD-Hours
AU-Input-Basic-Hours
AU-Input-Standard-Hours
AU-Output-FullHD-Hours
AU-Output-HD-Hours
AU-Output-SD-Hours
BR-Input-Basic-Hours
BR-Input-Standard-Hours
BR-Output-FullHD-Hours
BR-Output-HD-Hours
BR-Output-SD-Hours
EU-Input-Basic-Hours
EU-Input-Standard-Hours
EU-Output-FullHD-Hours
EU-Output-HD-Hours
EU-Output-SD-Hours
IN-Input-Basic-Hours
IN-Input-Standard-Hours
IN-Output-FullHD-Hours
IN-Output-HD-Hours
IN-Output-SD-Hours
KR-Input-Basic-Hours
KR-Input-Standard-Hours
KR-Output-FullHD-Hours
KR-Output-HD-Hours
KR-Output-SD-Hours
NA-Input-Basic-Hours
NA-Input-Standard-Hours
NA-Output-FullHD-Hours
NA-Output-HD-Hours
NA-Output-SD-Hours
TW-Input-Basic-Hours
TW-Input-Standard-Hours
TW-Output-FullHD-Hours
TW-Output-HD-Hours
TW-Output-SD-Hours
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Interactive Video Service.
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.