Amazon CloudFormation · JSON Structure

Cloudformation Stack Drift Information Structure

StackDriftInformation schema

Type: object Properties: 2 Required: 1
CloudFormationInfrastructure as CodeDevOpsIaC

StackDriftInformation is a JSON Structure definition published by Amazon CloudFormation, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

StackDriftStatus LastCheckTimestamp

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudformation/refs/heads/main/json-structure/cloudformation-stack-drift-information-structure.json",
  "name": "StackDriftInformation",
  "description": "StackDriftInformation schema",
  "type": "object",
  "properties": {
    "StackDriftStatus": {
      "type": "string",
      "enum": [
        "DRIFTED",
        "IN_SYNC",
        "UNKNOWN",
        "NOT_CHECKED"
      ]
    },
    "LastCheckTimestamp": {
      "type": "datetime"
    }
  },
  "required": [
    "StackDriftStatus"
  ]
}