My team is developing an application that will deploy multiple stacks to AWS. One of these stacks is called SuperStar, and it can only exist once per AWS account. I am currently exploring how our TypeScript CDK can retrieve a list of stacks from CloudFormation. While I am aware of the AWS CLI command
aws cloudformation list-stacks --region us-east-1
, I am curious if there is also a TypeScript API available for this functionality.