budget_action_histories
Creates, updates, deletes, gets or lists a budget_action_histories resource.
Overview
| Name | budget_action_histories |
| Type | Resource |
| Id | aws.budgets.budget_action_histories |
Fields
The following fields are returned by SELECT queries:
- describe_budget_action_histories
| Name | Datatype | Description |
|---|---|---|
action_history_details | object | The description of the details for the event. |
event_type | string | This distinguishes between whether the events are triggered by the user or are generated by the system. (SYSTEM, CREATE_ACTION, DELETE_ACTION, UPDATE_ACTION, EXECUTE_ACTION) |
status | string | The status of action at the time of the event. (STANDBY, PENDING, EXECUTION_IN_PROGRESS, EXECUTION_SUCCESS, EXECUTION_FAILURE, REVERSE_IN_PROGRESS, REVERSE_SUCCESS, REVERSE_FAILURE, RESET_IN_PROGRESS, RESET_FAILURE) |
timestamp | string (date-time) | A generic time stamp. In Java, it's transformed to a Date object. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_budget_action_histories | select | region | Describes a budget action history detail. |
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
- describe_budget_action_histories
Describes a budget action history detail.
SELECT
action_history_details,
event_type,
status,
timestamp
FROM aws.budgets.budget_action_histories
WHERE region = '{{ region }}' -- required
;