AWS CloudFormation · JSON Structure

Cloudformation Stack Structure

Type: object Properties: 22
AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

Stack is a JSON Structure definition published by AWS CloudFormation, describing 22 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

StackId StackName ChangeSetId Description CreationTime DeletionTime LastUpdatedTime StackStatusReason DisableRollback NotificationARNs TimeoutInMinutes Capabilities Outputs RoleARN Tags EnableTerminationProtection Parameters ParentId RootId DeletionMode DetailedStatus RetainExceptOnCreate

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Stack",
  "type": "object",
  "properties": {
    "StackId": {
      "type": "string"
    },
    "StackName": {
      "type": "string"
    },
    "ChangeSetId": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "CreationTime": {
      "type": "string"
    },
    "DeletionTime": {
      "type": "string"
    },
    "LastUpdatedTime": {
      "type": "string"
    },
    "StackStatusReason": {
      "type": "string"
    },
    "DisableRollback": {
      "type": "boolean"
    },
    "NotificationARNs": {
      "type": "array"
    },
    "TimeoutInMinutes": {
      "type": "integer"
    },
    "Capabilities": {
      "type": "array"
    },
    "Outputs": {
      "type": "array"
    },
    "RoleARN": {
      "type": "string"
    },
    "Tags": {
      "type": "array"
    },
    "EnableTerminationProtection": {
      "type": "boolean"
    },
    "Parameters": {
      "type": "array"
    },
    "ParentId": {
      "type": "string"
    },
    "RootId": {
      "type": "string"
    },
    "DeletionMode": {
      "type": "string"
    },
    "DetailedStatus": {
      "type": "string"
    },
    "RetainExceptOnCreate": {
      "type": "boolean"
    }
  }
}