Amazon CloudFormation · JSON Structure

Cloudformation List Stacks Output Structure

ListStacksOutput schema

Type: object Properties: 2
CloudFormationInfrastructure as CodeDevOpsIaC

ListStacksOutput 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

StackSummaries NextToken

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-list-stacks-output-structure.json",
  "name": "ListStacksOutput",
  "description": "ListStacksOutput schema",
  "type": "object",
  "properties": {
    "StackSummaries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "StackId": {
            "type": "string"
          },
          "StackName": {
            "type": "string"
          },
          "StackStatus": {
            "type": "string"
          },
          "CreationTime": {
            "type": "string",
            "format": "date-time"
          },
          "DeletionTime": {
            "type": "string",
            "format": "date-time"
          },
          "LastUpdatedTime": {
            "type": "string",
            "format": "date-time"
          },
          "TemplateDescription": {
            "type": "string"
          }
        }
      }
    },
    "NextToken": {
      "type": "string"
    }
  }
}