I have created a stacks in Cloud formation. When try to get all the stacks through aws cli its working but i tried to get all the stack via boto3 API in python. Here, it didn't collect all the stacks information. few of the stacks information missed. I compared both cli and boto3 api results.
I used below commands to list all the stacks
CLI
aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE
boto3 API
client = boto3.client('cloudformation')
stacks = client.list_stacks(StackStatusFilter=["CREATE_COMPLETE"])