AWS CloudFormation · JSON Structure

Cloudformation Stack Set Structure

Type: object Properties: 12
AutomationCloud ResourcesIaCInfrastructure As CodeStack Management

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

Properties

StackSetName StackSetId Description Status TemplateBody Parameters Capabilities Tags StackSetARN AdministrationRoleARN ExecutionRoleName PermissionModel

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "StackSet",
  "type": "object",
  "properties": {
    "StackSetName": {
      "type": "string"
    },
    "StackSetId": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "Status": {
      "type": "string"
    },
    "TemplateBody": {
      "type": "string"
    },
    "Parameters": {
      "type": "array"
    },
    "Capabilities": {
      "type": "array"
    },
    "Tags": {
      "type": "array"
    },
    "StackSetARN": {
      "type": "string"
    },
    "AdministrationRoleARN": {
      "type": "string"
    },
    "ExecutionRoleName": {
      "type": "string"
    },
    "PermissionModel": {
      "type": "string"
    }
  }
}