# atmos aws cloudformation changeset list

List a CloudFormation stack's changesets (`ListChangeSets`), newest first —
each entry's name, status, and description.

> ⚠️ Experimental

## Usage

```shell
atmos aws cloudformation changeset list <component> --stack <stack> [options]
```

```shell
atmos aws cloudformation changeset list vpc -s plat-ue2-dev
```

## Flags

- **`--stack`, `-s` (required for a single component)**
  Atmos stack. Required when operating on a single component; optional (and used only to narrow the selected set) with 
  `--all`
  /
  `--affected`
  .
- **`--all` (optional)**
  List changesets for all 
  `aws/cloudformation`
   components in dependency order.
- **`--affected` (optional)**
  List changesets for affected 
  `aws/cloudformation`
   components and their dependencies.
- **`--include-dependents` (optional)**
  With 
  `--affected`
  , include dependent 
  `aws/cloudformation`
   components.
- **`--tags` (optional)**
  Filter by tags (comma-separated, matches any): 
  `--tags=production,tier-1`
  . Composes with 
  `--all`
  /
  `--affected`
   to narrow the selected set further; cannot be combined with a single component argument.
- **`--labels` (optional)**
  Filter by labels (comma-separated 
  `key=value`
   or 
  `key:value`
   pairs, matches all): 
  `--labels=cost-center=platform,compliance=sox`
  . Composes with 
  `--all`
  /
  `--affected`
  /
  `--tags`
  ; cannot be combined with a single component argument.

## Output

If the stack has no changesets, `changeset list` prints a single line saying
so instead of an empty table.

:::note
`changeset list` does not fire `before`/`after` hook events — only
[`apply`](/cli/commands/aws/cloudformation/apply),
[`diff`](/cli/commands/aws/cloudformation/diff), and
[`delete`](/cli/commands/aws/cloudformation/delete) do.
:::
