Skip to main content

estimated_carbon_emissions_dimension_values

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

Overview

Nameestimated_carbon_emissions_dimension_values
TypeResource
Idaws.sustainability.estimated_carbon_emissions_dimension_values

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dimensionstringSpecifies the dimensions available for grouping and filtering environmental impact data. (USAGE_ACCOUNT_ID, REGION, SERVICE)
valuestringThe value for the specified dimension. Valid values vary based on the dimension type (e.g., us-east-1 for the REGION dimension, AmazonEC2 for the SERVICE dimension).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_estimated_carbon_emissions_dimension_valuesselectregionReturns the possible dimension values available for a customer's account. We recommend using pagination to ensure that the operation returns quickly and successfully.

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 the possible dimension values available for a customer's account. We recommend using pagination to ensure that the operation returns quickly and successfully.

SELECT
dimension,
value
FROM aws.sustainability.estimated_carbon_emissions_dimension_values
WHERE region = '{{ region }}' -- required
;