Last active
June 11, 2018 17:34
-
-
Save danilop/4f1322cfae301da68490930163fc18a9 to your computer and use it in GitHub Desktop.
Return the list of resources in a CloudFormation Stack
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function listStackResources(stackName) { | |
console.log("Calling AWS CloudFormation to list Resources for Stack " + stackName); | |
return await manageApiPagination(CloudFormation, 'listStackResources', { | |
StackName: stackName | |
}, 'StackResourceSummaries'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment