Skip to main content

bill_scenario_commitment_modifications

Creates, updates, deletes, gets or lists a bill_scenario_commitment_modifications resource.

Overview

Namebill_scenario_commitment_modifications
TypeResource
Idaws.bcm_pricing_calculator.bill_scenario_commitment_modifications

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe 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_actionobjectThe specific commitment action taken in this modification.
groupstringThe group identifier for the commitment modification. (pattern: <code>[a-zA-Z0-9-]*</code>)
usage_account_idstringThe Amazon Web Services account ID associated with this commitment modification. (pattern: <code>\d{12}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_bill_scenario_commitment_modificationsselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;