Amazon CloudFormation · Example Payload

Cloudformation List Stacks Output Example

CloudFormationInfrastructure as CodeDevOpsIaC

Cloudformation List Stacks Output Example is an example object payload from Amazon CloudFormation, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

StackSummariesNextToken

Example Payload

Raw ↑
{
  "StackSummaries": [
    {
      "StackId": "abc12345",
      "StackName": "example-resource",
      "StackStatus": "ACTIVE",
      "CreationTime": "2025-03-15T14:30:00Z",
      "DeletionTime": "2025-03-15T14:30:00Z",
      "LastUpdatedTime": "2025-03-15T14:30:00Z",
      "TemplateDescription": "example-value"
    }
  ],
  "NextToken": "example-value"
}