AWS CodeDeploy Price List API all Attribute Names and Values


Last Updated on April 29, 2021

Below is a reference for all attribute names and attribute values in AWS Price List API for AWS CodeDeploy.

Note: All the list below are in alphabetical order.

Service Code: AWSCodeDeploy

Python Code to get Attribute Names for AWS CodeDeploy using Boto3

import boto3

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

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

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

print(attribute_names)

Attribute Name List for AWS CodeDeploy


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

import boto3

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

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

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='AWSCodeDeploy',
        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 CodeDeploy

Attribute Name: deploymentLocation
Values:

On Premises

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 (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: operation
Values:

UpdateDeploymentStatus

Attribute Name: productFamily
Values:

CodeDeploy

Attribute Name: servicecode
Values:

AWSCodeDeploy

Attribute Name: servicename
Values:

AWS CodeDeploy

Attribute Name: termType
Values:

OnDemand

Attribute Name: usagetype
Values:

AFS1-On-Premises-Instance
APE1-On-Premises-Instance
APN1-On-Premises-Instance
APN2-On-Premises-Instance
APN3-On-Premises-Instance
APS1-On-Premises-Instance
APS2-On-Premises-Instance
APS3-On-Premises-Instance
CAN1-On-Premises-Instance
EU-On-Premises-Instance
EUC1-On-Premises-Instance
EUN1-On-Premises-Instance
EUW2-On-Premises-Instance
EUW3-On-Premises-Instance
MES1-On-Premises-Instance
On-Premises-Instance
SAE1-On-Premises-Instance
UGE1-On-Premises-Instance
UGW1-On-Premises-Instance
USE2-On-Premises-Instance
USW1-On-Premises-Instance
USW2-On-Premises-Instance

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

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 *