available_resource_dimensions
Creates, updates, deletes, gets or lists an available_resource_dimensions resource.
Overview
| Name | available_resource_dimensions |
| Type | Resource |
| Id | aws.pi.available_resource_dimensions |
Fields
The following fields are returned by SELECT queries:
- list_available_resource_dimensions
| Name | Datatype | Description |
|---|---|---|
metric_dimensions | array | The dimension information returned for requested metric types. |
next_token | string | An optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the token, up to the value specified by MaxRecords. (pattern: <code>^[a-zA-Z0-9_=-]+$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_available_resource_dimensions | select | region | Retrieve the dimensions that can be queried for each specified metric type on a specified DB instance. |
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
- list_available_resource_dimensions
Retrieve the dimensions that can be queried for each specified metric type on a specified DB instance.
SELECT
metric_dimensions,
next_token
FROM aws.pi.available_resource_dimensions
WHERE region = '{{ region }}' -- required
;