AWS Ground Station 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 Ground Station.

Note: All the list below are in alphabetical order.

Service Code: AWSGroundStation

Python Code to get Attribute Names for AWS Ground Station using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS Ground Station


Python Code to get the Attribute Values List for AWS Ground Station using Boto3

import boto3

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

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

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='AWSGroundStation',
        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 Ground Station

Attribute Name: bandwidth
Values:

Narrow
Wide

Attribute Name: groundstation
Values:

Bahrain 1
Cape Town 1
Hawaii 1
Ireland 1
Ohio 1
Oregon 1
Stockholm 1
Sydney 1

Attribute Name: location
Values:

Africa (Cape Town)
Asia Pacific (Sydney)
EU (Ireland)
EU (Stockholm)
Middle East (Bahrain)
US East (Ohio)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: ondemand
Values:

False
True

Attribute Name: productFamily
Values:

AWS Ground Station Contact

Attribute Name: servicecode
Values:

AWSGroundStation

Attribute Name: servicename
Values:

AWS Ground Station

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

AFS1-CapeTown1-Contact-Narrowband-Minute
AFS1-CapeTown1-Contact-Narrowband-OnDemand-Minute
AFS1-CapeTown1-Contact-Wideband-Minute
AFS1-CapeTown1-Contact-Wideband-OnDemand-Minute
APS2-Sydney1-Contact-Narrowband-Minute
APS2-Sydney1-Contact-Narrowband-OnDemand-Minute
APS2-Sydney1-Contact-Wideband-Minute
APS2-Sydney1-Contact-Wideband-OnDemand-Minute
EU-Ireland1-Contact-Narrowband-Minute
EU-Ireland1-Contact-Narrowband-OnDemand-Minute
EU-Ireland1-Contact-Wideband-Minute
EU-Ireland1-Contact-Wideband-OnDemand-Minute
EUN1-Stockholm1-Contact-Narrowband-Minute
EUN1-Stockholm1-Contact-Narrowband-OnDemand-Minute
EUN1-Stockholm1-Contact-Wideband-Minute
EUN1-Stockholm1-Contact-Wideband-OnDemand-Minute
MES1-Bahrain1-Contact-Narrowband-Minute
MES1-Bahrain1-Contact-Narrowband-OnDemand-Minute
MES1-Bahrain1-Contact-Wideband-Minute
MES1-Bahrain1-Contact-Wideband-OnDemand-Minute
USE2-Ohio1-Contact-Narrowband-Minute
USE2-Ohio1-Contact-Narrowband-OnDemand-Minute
USE2-Ohio1-Contact-Wideband-Minute
USE2-Ohio1-Contact-Wideband-OnDemand-Minute
USW2-Hawaii1-Contact-Narrowband-Minute
USW2-Hawaii1-Contact-Narrowband-OnDemand-Minute
USW2-Hawaii1-Contact-Wideband-Minute
USW2-Hawaii1-Contact-Wideband-OnDemand-Minute
USW2-Oregon1-Contact-Narrowband-Minute
USW2-Oregon1-Contact-Narrowband-OnDemand-Minute
USW2-Oregon1-Contact-Wideband-Minute
USW2-Oregon1-Contact-Wideband-OnDemand-Minute

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

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 *