list_configuration_history
(**kwargs)¶Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights. Examples of events represented are:
See also: AWS API Documentation
Request Syntax
response = client.list_configuration_history(
ResourceGroupName='string',
StartTime=datetime(2015, 1, 1),
EndTime=datetime(2015, 1, 1),
EventStatus='INFO'|'WARN'|'ERROR',
MaxResults=123,
NextToken='string'
)
ListConfigurationHistory
in paginated output. When this parameter is used, ListConfigurationHistory
returns only MaxResults
in a single page along with a NextToken
response element. The remaining results of the initial request can be seen by sending another ListConfigurationHistory
request with the returned NextToken
value. If this parameter is not used, then ListConfigurationHistory
returns all results.NextToken
value returned from a previous paginated ListConfigurationHistory
request where MaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken
value. This value is null
when there are no more results to return.dict
Response Syntax
{
'EventList': [
{
'MonitoredResourceARN': 'string',
'EventStatus': 'INFO'|'WARN'|'ERROR',
'EventResourceType': 'CLOUDWATCH_ALARM'|'CLOUDWATCH_LOG'|'CLOUDFORMATION'|'SSM_ASSOCIATION',
'EventTime': datetime(2015, 1, 1),
'EventDetail': 'string',
'EventResourceName': 'string'
},
],
'NextToken': 'string'
}
Response Structure
(dict) --
EventList (list) --
The list of configuration events and their corresponding details.
(dict) --
The event information.
MonitoredResourceARN (string) --
The resource monitored by Application Insights.
EventStatus (string) --
The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
EventResourceType (string) --
The resource type that Application Insights attempted to configure, for example, CLOUDWATCH_ALARM.
EventTime (datetime) --
The timestamp of the event.
EventDetail (string) --
The details of the event in plain text.
EventResourceName (string) --
The name of the resource Application Insights attempted to configure.
NextToken (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.
Exceptions
ApplicationInsights.Client.exceptions.ValidationException
ApplicationInsights.Client.exceptions.ResourceNotFoundException
ApplicationInsights.Client.exceptions.InternalServerException