AWS‑IReveal‑MCP

config_get_resource_config_history

Retrieve configuration snapshots for AWS resources between specified timestamps. Specify resource type, ID, region, and time range to fetch historical configuration data.

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

NameRequiredDescriptionDefault
aws_regionYes
end_timeYes
limitNo
resource_idYes
resource_typeYes
start_timeYes

Input Schema (JSON Schema)

{ "properties": { "aws_region": { "title": "Aws Region", "type": "string" }, "end_time": { "title": "End Time", "type": "string" }, "limit": { "default": 10, "title": "Limit", "type": "integer" }, "resource_id": { "title": "Resource Id", "type": "string" }, "resource_type": { "title": "Resource Type", "type": "string" }, "start_time": { "title": "Start Time", "type": "string" } }, "required": [ "aws_region", "resource_type", "resource_id", "start_time", "end_time" ], "title": "config_get_resource_config_historyArguments", "type": "object" }
ID: myt94uniyf