StackResourceDriftInformation

StackResourceDriftInformation schema

CloudFormationInfrastructure as CodeDevOpsIaC

Properties

Name Type Description
StackResourceDriftStatus string
LastCheckTimestamp string
View JSON Schema on GitHub

JSON Schema

cloudformation-stack-resource-drift-information-schema.json Raw ↑
{
  "$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"
  ]
}