bill_estimate_input_usage_modifications
Creates, updates, deletes, gets or lists a bill_estimate_input_usage_modifications resource.
Overview
| Name | bill_estimate_input_usage_modifications |
| Type | Resource |
| Id | aws.bcm_pricing_calculator.bill_estimate_input_usage_modifications |
Fields
The following fields are returned by SELECT queries:
- list_bill_estimate_input_usage_modifications
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier of the usage modification. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>) |
availability_zone | string | The availability zone associated with this usage modification, if applicable. (pattern: <code>[-a-zA-Z0-9.-_:, /()]*</code>) |
group | string | The group identifier for the usage modification. (pattern: <code>[a-zA-Z0-9-]*</code>) |
historical_usage | object | Historical usage data associated with this modification, if available. |
location | string | The location associated with this usage modification. |
operation | string | The specific operation associated with this usage modification. (pattern: <code>[-a-zA-Z0-9.-_:, /()]*</code>) |
quantities | array | The modified usage quantities. |
service_code | string | The Amazon Web Services service code for this usage modification. (pattern: <code>[-a-zA-Z0-9.-_:, /()]*</code>) |
usage_account_id | string | The Amazon Web Services account ID associated with this usage modification. (pattern: <code>\d{12}</code>) |
usage_type | string | The type of usage being modified. (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_bill_estimate_input_usage_modifications | select | region | Lists the input usage modifications associated with a bill estimate. |
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_bill_estimate_input_usage_modifications
Lists the input usage modifications associated with a bill estimate.
SELECT
id,
availability_zone,
group,
historical_usage,
location,
operation,
quantities,
service_code,
usage_account_id,
usage_type
FROM aws.bcm_pricing_calculator.bill_estimate_input_usage_modifications
WHERE region = '{{ region }}' -- required
;