attribute_values
Creates, updates, deletes, gets or lists an attribute_values resource.
Overview
| Name | attribute_values |
| Type | Resource |
| Id | aws.pricing.attribute_values |
Fields
The following fields are returned by SELECT queries:
- get_attribute_values
| Name | Datatype | Description |
|---|---|---|
value | string | The specific value of an attributeName. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_attribute_values | select | region | Returns a list of attribute values. Attributes are similar to the details in a Price List API offer file. For a list of available attributes, see Offer File Definitions in the Billing and Cost Management User Guide. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_attribute_values
Returns a list of attribute values. Attributes are similar to the details in a Price List API offer file. For a list of available attributes, see Offer File Definitions in the Billing and Cost Management User Guide.
SELECT
value
FROM aws.pricing.attribute_values
WHERE region = '{{ region }}' -- required
;