config_get_resource_config_history
Retrieve AWS resource configuration snapshots within a specified time range. Input AWS region, resource type, ID, start and end timestamps, and limit to fetch historical configurations.
Instructions
Fetch configuration snapshots for a resource between two ISO timestamps.
Parameters:
aws_region (str): The AWS region - use 'us-east-1' if not specified.
resource_type (str): e.g. 'AWS::S3::Bucket'.
resource_id (str): the resource's ARN or ID.
start_time (str): ISO timestamp, e.g. '2025-04-01T00:00:00Z'.
end_time (str): ISO timestamp.
limit (int): Maximum number of configuration items to return.
Returns:
JSON list of ConfigurationItem objects.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aws_region | Yes | ||
end_time | Yes | ||
limit | No | ||
resource_id | Yes | ||
resource_type | Yes | ||
start_time | Yes |