Skip to main content

estimated_carbon_emissions

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

Overview

Nameestimated_carbon_emissions
TypeResource
Idaws.sustainability.estimated_carbon_emissions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
dimensions_valuesobjectThe dimensions used to group emissions values.
emissions_valuesobjectThe emissions values for the requested emissions types.
model_versionstringThe semantic version-formatted string that indicates the methodology version used to calculate the emission values. The AWS Sustainability service reflects the most recent model version for every month. You will not see two entries for the same month with different ModelVersion values. To track the evolution of the methodology and compare emission values from previous versions, we recommend creating a Data Export. (pattern: <code>v(0|[1-9]\d*).(0|[1-9]\d*).(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-])(?:.(?:0|[1-9]\d|\d*[a-zA-Z-][0-9a-zA-Z-]))))?(?:+([0-9a-zA-Z-]+(?:.[0-9a-zA-Z-]+)*))?</code>)
time_periodobjectRepresents a duration of time defined by start and end timestamps.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_estimated_carbon_emissionsselectregionReturns estimated carbon emission values based on customer grouping and filtering parameters. 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 estimated carbon emission values based on customer grouping and filtering parameters. We recommend using pagination to ensure that the operation returns quickly and successfully.

SELECT
dimensions_values,
emissions_values,
model_version,
time_period
FROM aws.sustainability.estimated_carbon_emissions
WHERE region = '{{ region }}' -- required
;