Amazon CloudFormation · JSON Structure

Cloudformation Change Structure

Change schema

Type: object Properties: 2
CloudFormationInfrastructure as CodeDevOpsIaC

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

Properties

Type ResourceChange

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-change-structure.json",
  "name": "Change",
  "description": "Change schema",
  "type": "object",
  "properties": {
    "Type": {
      "type": "string",
      "enum": [
        "Resource"
      ]
    },
    "ResourceChange": {
      "type": "object",
      "properties": {
        "Action": {
          "type": "string",
          "enum": [
            "Add",
            "Modify",
            "Remove",
            "Import",
            "Dynamic"
          ]
        },
        "LogicalResourceId": {
          "type": "string"
        },
        "PhysicalResourceId": {
          "type": "string"
        },
        "ResourceType": {
          "type": "string"
        },
        "Replacement": {
          "type": "string",
          "enum": [
            "True",
            "False",
            "Conditional"
          ]
        },
        "Scope": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      }
    }
  }
}