products
Creates, updates, deletes, gets or lists a products resource.
Overview
| Name | products |
| Type | Resource |
| Id | aws.pricing.products |
Fields
The following fields are returned by SELECT queries:
- get_products
| Name | Datatype | Description |
|---|---|---|
price | string | The list of products that match your filters. The list contains both the product metadata and the price information. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_products | select | region | Returns a list of all products that match the filter criteria. |
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_products
Returns a list of all products that match the filter criteria.
SELECT
price
FROM aws.pricing.products
WHERE region = '{{ region }}' -- required
;