Amazon EKS 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 Container Service for Kubernetes (EKS).

Note: All the list below are in alphabetical order.

Service Code: AmazonEKS

Python Code to get Attribute Names for AmazonEKS using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AmazonEKS


Python Code to get the Attribute Values List for AmazonEKS using Boto3

import boto3

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

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

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='AmazonEKS',
        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 AmazonEKS

Attribute Name: cputype
Values:

perCPU

Attribute Name: location
Values:

Africa (Cape Town)
Asia Pacific (Hong Kong)
Asia Pacific (Mumbai)
Asia Pacific (Osaka)
Asia Pacific (Seoul)
Asia Pacific (Singapore)
Asia Pacific (Sydney)
Asia Pacific (Tokyo)
AWS GovCloud (US-East)
AWS GovCloud (US-West)
Canada (Central)
EU (Frankfurt)
EU (Ireland)
EU (London)
EU (Milan)
EU (Paris)
EU (Stockholm)
Middle East (Bahrain)
South America (Sao Paulo)
US East (N. Virginia)
US East (Ohio)
US West (N. California)
US West (Oregon)

Attribute Name: locationType
Values:

AWS Region

Attribute Name: memorytype
Values:

perGB

Attribute Name: operation
Values:

CreateOperation

Attribute Name: productFamily
Values:

Compute

Attribute Name: servicecode
Values:

AmazonEKS

Attribute Name: servicename
Values:

Amazon Elastic Container Service for Kubernetes

Attribute Name: tenancy
Values:

Shared

Attribute Name: termType
Values:

OnDemand

Attribute Name: tiertype
Values:

HAStandard

Attribute Name: usagetype
Values:

AFS1-AmazonEKS-Hours:perCluster
AFS1-Fargate-GB-Hours
AFS1-Fargate-vCPU-Hours:perCPU
APE1-AmazonEKS-Hours:perCluster
APN1-AmazonEKS-Hours:perCluster
APN1-Fargate-GB-Hours
APN1-Fargate-vCPU-Hours:perCPU
APN2-AmazonEKS-Hours:perCluster
APN3-AmazonEKS-Hours:perCluster
APN3-Fargate-GB-Hours
APN3-Fargate-vCPU-Hours:perCPU
APS1-AmazonEKS-Hours:perCluster
APS1-Fargate-GB-Hours
APS1-Fargate-vCPU-Hours:perCPU
APS2-AmazonEKS-Hours:perCluster
APS2-Fargate-GB-Hours
APS2-Fargate-vCPU-Hours:perCPU
APS3-AmazonEKS-Hours:perCluster
CAN1-AmazonEKS-Hours:perCluster
EU-AmazonEKS-Hours:perCluster
EU-Fargate-GB-Hours
EU-Fargate-vCPU-Hours:perCPU
EUC1-AmazonEKS-Hours:perCluster
EUC1-Fargate-GB-Hours
EUC1-Fargate-vCPU-Hours:perCPU
EUN1-AmazonEKS-Hours:perCluster
EUS1-AmazonEKS-Hours:perCluster
EUS1-Fargate-GB-Hours
EUS1-Fargate-vCPU-Hours:perCPU
EUW2-AmazonEKS-Hours:perCluster
EUW3-AmazonEKS-Hours:perCluster
MES1-AmazonEKS-Hours:perCluster
SAE1-AmazonEKS-Hours:perCluster
SAE1-Fargate-GB-Hours
UGE1-AmazonEKS-Hours:perCluster
UGW1-AmazonEKS-Hours:perCluster
USE1-AmazonEKS-Hours:perCluster
USE1-Fargate-GB-Hours
USE1-Fargate-vCPU-Hours:perCPU
USE2-AmazonEKS-Hours:perCluster
USE2-Fargate-GB-Hours
USE2-Fargate-vCPU-Hours:perCPU
USW1-AmazonEKS-Hours:perCluster
USW2-AmazonEKS-Hours:perCluster
USW2-Fargate-GB-Hours
USW2-Fargate-vCPU-Hours:perCPU

We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Elastic Container Service for Kubernetes (EKS).

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 *