Skip to main content

configuration_histories

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

Overview

Nameconfiguration_histories
TypeResource
Idaws.application_insights.configuration_histories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
event_listarrayThe list of configuration events and their corresponding details.
next_tokenstringThe 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:

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

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

SELECT examples

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
;