Amazon CloudFormation · JSON Structure

Cloudformation Stack Resource Drift Information Structure

StackResourceDriftInformation schema

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

StackResourceDriftInformation 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

StackResourceDriftStatus 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-resource-drift-information-structure.json",
  "name": "StackResourceDriftInformation",
  "description": "StackResourceDriftInformation schema",
  "type": "object",
  "properties": {
    "StackResourceDriftStatus": {
      "type": "string",
      "enum": [
        "IN_SYNC",
        "MODIFIED",
        "DELETED",
        "NOT_CHECKED"
      ]
    },
    "LastCheckTimestamp": {
      "type": "datetime"
    }
  },
  "required": [
    "StackResourceDriftStatus"
  ]
}