Skip to main content

budget_action_histories

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

Overview

Namebudget_action_histories
TypeResource
Idaws.budgets.budget_action_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
action_history_detailsobjectThe description of the details for the event.
event_typestringThis 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)
statusstringThe 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)
timestampstring (date-time)A generic time stamp. In Java, it's transformed to a Date object.

Methods

The following methods are available for this resource:

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

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

SELECT examples

Describes a budget action history detail.

SELECT
action_history_details,
event_type,
status,
timestamp
FROM aws.budgets.budget_action_histories
WHERE region = '{{ region }}' -- required
;