StackDriftInformation

StackDriftInformation schema

CloudFormationInfrastructure as CodeDevOpsIaC

Properties

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

JSON Schema

cloudformation-stack-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-drift-information-schema.json",
  "title": "StackDriftInformation",
  "description": "StackDriftInformation schema",
  "type": "object",
  "properties": {
    "StackDriftStatus": {
      "type": "string",
      "enum": [
        "DRIFTED",
        "IN_SYNC",
        "UNKNOWN",
        "NOT_CHECKED"
      ]
    },
    "LastCheckTimestamp": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": [
    "StackDriftStatus"
  ]
}