estimated_water_allocation_dimension_values
Creates, updates, deletes, gets or lists an estimated_water_allocation_dimension_values resource.
Overview
| Name | estimated_water_allocation_dimension_values |
| Type | Resource |
| Id | aws.sustainability.estimated_water_allocation_dimension_values |
Fields
The following fields are returned by SELECT queries:
- get_estimated_water_allocation_dimension_values
| Name | Datatype | Description |
|---|---|---|
dimension | string | Specifies the dimensions available for grouping and filtering environmental impact data. (USAGE_ACCOUNT_ID, REGION, SERVICE) |
value | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_estimated_water_allocation_dimension_values | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_estimated_water_allocation_dimension_values
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_water_allocation_dimension_values
WHERE region = '{{ region }}' -- required
;