Skip to main content

available_metered_products

Creates, updates, deletes, gets or lists an available_metered_products resource.

Overview

Nameavailable_metered_products
TypeResource
Idaws.deadline.available_metered_products

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
familystringThe family to which the metered product belongs.
portintegerThe port on which the metered product should run.
product_idstringThe product ID. (pattern: <code>[0-9a-z]{1,32}-[.0-9a-z]{1,32}</code>)
vendorstringThe vendor.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_available_metered_productsselectregionnextToken, maxResultsA list of the available metered products.

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)
maxResultsintegerThe maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages.
nextTokenstringThe token for the next set of results, or null to start from the beginning.

SELECT examples

A list of the available metered products.

SELECT
family,
port,
product_id,
vendor
FROM aws.deadline.available_metered_products
WHERE region = '{{ region }}' -- required
AND nextToken = '{{ nextToken }}'
AND maxResults = '{{ maxResults }}'
;