cost_allocation_tag_backfill_histories
Creates, updates, deletes, gets or lists a cost_allocation_tag_backfill_histories resource.
Overview
| Name | cost_allocation_tag_backfill_histories |
| Type | Resource |
| Id | aws.ce.cost_allocation_tag_backfill_histories |
Fields
The following fields are returned by SELECT queries:
- list_cost_allocation_tag_backfill_history
| Name | Datatype | Description |
|---|---|---|
backfill_from | string | The 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_status | string | The status of the cost allocation tag backfill request. (SUCCEEDED, PROCESSING, FAILED) |
completed_at | string | The 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_at | string | The 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_at | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_cost_allocation_tag_backfill_history | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_cost_allocation_tag_backfill_history
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
;