Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon Managed Blockchain.
Note: All the list below are in alphabetical order.
Service Code: AmazonManagedBlockchain
Python Code to get Attribute Names for Amazon Managed Blockchain using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonManagedBlockchain')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for Amazon Managed Blockchain
- frameworkType
- instanceType
- location
- locationType
- operation
- productFamily
- servicecode
- servicename
- termType
- usagetype
Python Code to get the Attribute Values List for Amazon Managed Blockchain using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonManagedBlockchain')
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='AmazonManagedBlockchain',
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 Managed Blockchain
Attribute Name: frameworkType
Values:
Ethereum - Public
Hyperledger Fabric - Standard
Hyperledger Fabric - Starter
Attribute Name: instanceType
Values:
bc.c5.2xlarge
bc.c5.4xlarge
bc.c5.large
bc.c5.xlarge
bc.m5.2xlarge
bc.m5.4xlarge
bc.m5.large
bc.m5.xlarge
bc.t3.large
bc.t3.medium
bc.t3.small
bc.t3.xlarge
Attribute Name: location
Values:
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Tokyo)
EU (Ireland)
EU (London)
US East (N. Virginia)
Attribute Name: locationType
Values:
AWS Region
Attribute Name: operation
Values:
Ethereum:Public
Fabric:Standard
Fabric:Starter
Attribute Name: productFamily
Values:
Blockchain Data Written
Blockchain Instance
Blockchain Member
Blockchain Node Storage
Blockchain Request
Attribute Name: servicecode
Values:
AmazonManagedBlockchain
Attribute Name: servicename
Values:
Amazon Managed Blockchain
Attribute Name: termType
Values:
OnDemand
Attribute Name: usagetype
Values:
APN1-Data-Written-To-Network APN2-Node:bc.t3.xlarge EU-Node:bc.t3.medium USE1-Node:bc.m5.xlarge
APN1-Member APN2-Request EU-Node:bc.t3.small USE1-Node:bc.t3.large
APN1-Node-Storage APS1-Data-Written-To-Network EU-Node:bc.t3.xlarge USE1-Node:bc.t3.medium
APN1-Node:bc.c5.2xlarge APS1-Member EU-Request USE1-Node:bc.t3.small
APN1-Node:bc.c5.4xlarge APS1-Node-Storage EUW2-Data-Written-To-Network USE1-Node:bc.t3.xlarge
APN1-Node:bc.c5.large APS1-Node:bc.c5.2xlarge EUW2-Member USE1-Request
APN1-Node:bc.c5.xlarge APS1-Node:bc.c5.4xlarge EUW2-Node-Storage
APN1-Node:bc.m5.2xlarge APS1-Node:bc.c5.large EUW2-Node:bc.c5.2xlarge
APN1-Node:bc.m5.4xlarge APS1-Node:bc.c5.xlarge EUW2-Node:bc.c5.4xlarge
APN1-Node:bc.m5.large APS1-Node:bc.m5.2xlarge EUW2-Node:bc.c5.large
APN1-Node:bc.m5.xlarge APS1-Node:bc.m5.4xlarge EUW2-Node:bc.c5.xlarge
APN1-Node:bc.t3.large APS1-Node:bc.m5.large EUW2-Node:bc.m5.2xlarge
APN1-Node:bc.t3.medium APS1-Node:bc.m5.xlarge EUW2-Node:bc.m5.4xlarge
APN1-Node:bc.t3.small APS1-Node:bc.t3.large EUW2-Node:bc.m5.large
APN1-Node:bc.t3.xlarge APS1-Node:bc.t3.medium EUW2-Node:bc.m5.xlarge
APN1-Request APS1-Node:bc.t3.small EUW2-Node:bc.t3.large
APN2-Data-Written-To-Network APS1-Node:bc.t3.xlarge EUW2-Node:bc.t3.medium
APN2-Member APS1-Request EUW2-Node:bc.t3.small
APN2-Node-Storage EU-Data-Written-To-Network EUW2-Node:bc.t3.xlarge
APN2-Node:bc.c5.2xlarge EU-Member EUW2-Request
APN2-Node:bc.c5.4xlarge EU-Node-Storage USE1-Data-Written-To-Network
APN2-Node:bc.c5.large EU-Node:bc.c5.2xlarge USE1-Member
APN2-Node:bc.c5.xlarge EU-Node:bc.c5.4xlarge USE1-Node-Storage
APN2-Node:bc.m5.2xlarge EU-Node:bc.c5.large USE1-Node:bc.c5.2xlarge
APN2-Node:bc.m5.4xlarge EU-Node:bc.c5.xlarge USE1-Node:bc.c5.4xlarge
APN2-Node:bc.m5.large EU-Node:bc.m5.2xlarge USE1-Node:bc.c5.large
APN2-Node:bc.m5.xlarge EU-Node:bc.m5.4xlarge USE1-Node:bc.c5.xlarge
APN2-Node:bc.t3.large EU-Node:bc.m5.large USE1-Node:bc.m5.2xlarge
APN2-Node:bc.t3.medium EU-Node:bc.m5.xlarge USE1-Node:bc.m5.4xlarge
APN2-Node:bc.t3.small EU-Node:bc.t3.large USE1-Node:bc.m5.large
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Managed Blockchain.
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.