Skip to main content

products

Creates, updates, deletes, gets or lists a products resource.

Overview

Nameproducts
TypeResource
Idaws.pricing.products

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
pricestringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
get_productsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns a list of all products that match the filter criteria.

SELECT
price
FROM aws.pricing.products
WHERE region = '{{ region }}' -- required
;