Skip to main content

cost_allocation_tag_backfill_histories

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

Overview

Namecost_allocation_tag_backfill_histories
TypeResource
Idaws.ce.cost_allocation_tag_backfill_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
backfill_fromstringThe period of time that you want the usage and costs for. (pattern: <code>^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d(([+-]\d\d:\d\d)|Z)$</code>)
backfill_statusstringThe status of the cost allocation tag backfill request. (SUCCEEDED, PROCESSING, FAILED)
completed_atstringThe period of time that you want the usage and costs for. (pattern: <code>^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d(([+-]\d\d:\d\d)|Z)$</code>)
last_updated_atstringThe period of time that you want the usage and costs for. (pattern: <code>^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d(([+-]\d\d:\d\d)|Z)$</code>)
requested_atstringThe period of time that you want the usage and costs for. (pattern: <code>^\d{4}-\d\d-\d\dT\d\d:\d\d:\d\d(([+-]\d\d:\d\d)|Z)$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_cost_allocation_tag_backfill_historyselectregionRetrieves a list of your historical cost allocation tag backfill requests.

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

Retrieves a list of your historical cost allocation tag backfill requests.

SELECT
backfill_from,
backfill_status,
completed_at,
last_updated_at,
requested_at
FROM aws.ce.cost_allocation_tag_backfill_histories
WHERE region = '{{ region }}' -- required
;