available_metered_products
Creates, updates, deletes, gets or lists an available_metered_products resource.
Overview
| Name | available_metered_products |
| Type | Resource |
| Id | aws.deadline.available_metered_products |
Fields
The following fields are returned by SELECT queries:
- list_available_metered_products
| Name | Datatype | Description |
|---|---|---|
family | string | The family to which the metered product belongs. |
port | integer | The port on which the metered product should run. |
product_id | string | The product ID. (pattern: <code>[0-9a-z]{1,32}-[.0-9a-z]{1,32}</code>) |
vendor | string | The vendor. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_available_metered_products | select | region | nextToken, maxResults | A 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of results to return. Use this parameter with NextToken to get results as a set of sequential pages. |
nextToken | string | The token for the next set of results, or null to start from the beginning. |
SELECT examples
- list_available_metered_products
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 }}'
;