Skip to main content

available_resource_dimensions

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

Overview

Nameavailable_resource_dimensions
TypeResource
Idaws.pi.available_resource_dimensions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
metric_dimensionsarrayThe dimension information returned for requested metric types.
next_tokenstringAn 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:

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

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

SELECT examples

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
;