configuration_histories
Creates, updates, deletes, gets or lists a configuration_histories resource.
Overview
| Name | configuration_histories |
| Type | Resource |
| Id | aws.application_insights.configuration_histories |
Fields
The following fields are returned by SELECT queries:
- list_configuration_history
| Name | Datatype | Description |
|---|---|---|
event_list | array | The list of configuration events and their corresponding details. |
next_token | string | The NextToken value to include in a future ListConfigurationHistory request. When the results of a ListConfigurationHistory request exceed MaxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return. (pattern: <code>.+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_configuration_history | select | region | Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights. Examples of events represented are: INFO: creating a new alarm or updating an alarm threshold. WARN: alarm not created due to insufficient data points used to predict thresholds. ERROR: alarm not created due to permission errors or exceeding quotas. |
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_configuration_history
Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights. Examples of events represented are: INFO: creating a new alarm or updating an alarm threshold. WARN: alarm not created due to insufficient data points used to predict thresholds. ERROR: alarm not created due to permission errors or exceeding quotas.
SELECT
event_list,
next_token
FROM aws.application_insights.configuration_histories
WHERE region = '{{ region }}' -- required
;