Last Updated on April 28, 2021
Below is a reference for all attribute names and attribute values in AWS Price List API for Amazon Simple Workflow Service (SWF).
Note: All the list below are in alphabetical order.
Service Code: AmazonSWF
Python Code to get Attribute Names for Amazon Simple Workflow Service (SWF) using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonSWF')
attribute_names = response['Services'][0]['AttributeNames']
print(attribute_names)
Attribute Name List for Amazon Simple Workflow Service (SWF)
- comments
- group
- groupDescription
- location
- locationType
- productFamily
- Restriction
- servicecode
- servicename
- termType
- usagetype
Python Code to get the Attribute Values List for Amazon Simple Workflow Service (SWF) using Boto3
import boto3
pricing_client = boto3.client('pricing', region_name='us-east-1')
response = pricing_client.describe_services(ServiceCode='AmazonSWF')
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='AmazonSWF',
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 Simple Workflow Service (SWF)
Attribute Name: comments
Values:
To be made public at the time of YUL launch, 12/8
Attribute Name: group
Values:
SWF-ClosedRetainedWorkflowDays
SWF-InitiatedActions
SWF-InitiatedWorkflows
SWF-OpenWorkflowDays
Attribute Name: groupDescription
Values:
Number of billable 24-hour periods the workflow was running
Number of calendar days workflow is retained
Number of tasks scheduled, signals received, markers set and timers setup
Number of workflow executions initiated
Attribute Name: location
Values:
Africa (Cape Town)
Any
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: productFamily
Values:
Amazon Simple Workflow
Attribute Name: Restriction
Values:
Limited SKU Usage
Attribute Name: servicecode
Values:
AmazonSWF
Attribute Name: servicename
Values:
Amazon Simple Workflow Service (SWF)
Attribute Name: termType
Values:
OnDemand
Attribute Name: usagetype
Values:
AFS1-ClosedRetainedWorkflowDays APS3-InitiatedWorkflows EUW3-OpenWorkflowDays USW1-OpenWorkflowDays
AFS1-InitiatedActions APS3-OpenWorkflowDays Global-AggregateInitiatedActions USW2-ClosedRetainedWorkflowDays
AFS1-InitiatedWorkflows CAN1-ClosedRetainedWorkflowDays Global-AggregateInitiatedWorkflows USW2-InitiatedActions
AFS1-OpenWorkflowDays CAN1-InitiatedActions Global-AggregateWorkflowDays USW2-InitiatedWorkflows
APE1-ClosedRetainedWorkflowDays CAN1-InitiatedWorkflows InitiatedActions USW2-OpenWorkflowDays
APE1-InitiatedActions CAN1-OpenWorkflowDays InitiatedWorkflows
APE1-InitiatedWorkflows ClosedRetainedWorkflowDays MES1-ClosedRetainedWorkflowDays
APE1-OpenWorkflowDays EU-ClosedRetainedWorkflowDays MES1-InitiatedActions
APN1-ClosedRetainedWorkflowDays EU-InitiatedActions MES1-InitiatedWorkflows
APN1-InitiatedActions EU-InitiatedWorkflows MES1-OpenWorkflowDays
APN1-InitiatedWorkflows EU-OpenWorkflowDays OpenWorkflowDays
APN1-OpenWorkflowDays EUC1-ClosedRetainedWorkflowDays SAE1-ClosedRetainedWorkflowDays
APN2-ClosedRetainedWorkflowDays EUC1-InitiatedActions SAE1-InitiatedActions
APN2-InitiatedActions EUC1-InitiatedWorkflows SAE1-InitiatedWorkflows
APN2-InitiatedWorkflows EUC1-OpenWorkflowDays SAE1-OpenWorkflowDays
APN2-OpenWorkflowDays EUN1-ClosedRetainedWorkflowDays UGE1-ClosedRetainedWorkflowDays
APN3-ClosedRetainedWorkflowDays EUN1-InitiatedActions UGE1-InitiatedActions
APN3-InitiatedActions EUN1-InitiatedWorkflows UGE1-InitiatedWorkflows
APN3-InitiatedWorkflows EUN1-OpenWorkflowDays UGE1-OpenWorkflowDays
APN3-OpenWorkflowDays EUS1-ClosedRetainedWorkflowDays UGW1-ClosedRetainedWorkflowDays
APS1-ClosedRetainedWorkflowDays EUS1-InitiatedActions UGW1-InitiatedActions
APS1-InitiatedActions EUS1-InitiatedWorkflows UGW1-InitiatedWorkflows
APS1-InitiatedWorkflows EUS1-OpenWorkflowDays UGW1-OpenWorkflowDays
APS1-OpenWorkflowDays EUW2-ClosedRetainedWorkflowDays USE2-ClosedRetainedWorkflowDays
APS2-ClosedRetainedWorkflowDays EUW2-InitiatedActions USE2-InitiatedActions
APS2-InitiatedActions EUW2-InitiatedWorkflows USE2-InitiatedWorkflows
APS2-InitiatedWorkflows EUW2-OpenWorkflowDays USE2-OpenWorkflowDays
APS2-OpenWorkflowDays EUW3-ClosedRetainedWorkflowDays USW1-ClosedRetainedWorkflowDays
APS3-ClosedRetainedWorkflowDays EUW3-InitiatedActions USW1-InitiatedActions
APS3-InitiatedActions EUW3-InitiatedWorkflows USW1-InitiatedWorkflows
We hope the above list of attribute names and values helps when using the AWS Price List API for Amazon Simple Workflow Service (SWF).
If the list is outdated, let us know in the comments below. We’ll update it as soon as we can.