StackResourceDriftInformation schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudformation/refs/heads/main/json-schema/cloudformation-stack-resource-drift-information-schema.json", "title": "StackResourceDriftInformation", "description": "StackResourceDriftInformation schema", "type": "object", "properties": { "StackResourceDriftStatus": { "type": "string", "enum": [ "IN_SYNC", "MODIFIED", "DELETED", "NOT_CHECKED" ] }, "LastCheckTimestamp": { "type": "string", "format": "date-time" } }, "required": [ "StackResourceDriftStatus" ] }