bill_scenario_commitment_modifications
Creates, updates, deletes, gets or lists a bill_scenario_commitment_modifications resource.
Overview
| Name | bill_scenario_commitment_modifications |
| Type | Resource |
| Id | aws.bcm_pricing_calculator.bill_scenario_commitment_modifications |
Fields
The following fields are returned by SELECT queries:
- list_bill_scenario_commitment_modifications
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier of the commitment modification. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>) |
commitment_action | object | The specific commitment action taken in this modification. |
group | string | The group identifier for the commitment modification. (pattern: <code>[a-zA-Z0-9-]*</code>) |
usage_account_id | string | The Amazon Web Services account ID associated with this commitment modification. (pattern: <code>\d{12}</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bill_scenario_commitment_modifications | select | region | Lists the commitment modifications associated with a bill scenario. |
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_scenario_commitment_modifications
Lists the commitment modifications associated with a bill scenario.
SELECT
id,
commitment_action,
group,
usage_account_id
FROM aws.bcm_pricing_calculator.bill_scenario_commitment_modifications
WHERE region = '{{ region }}' -- required
;