When you deploy the template, you can monitor the creation or update resources using AWS Console.
aws cloudformation list-stacks --region us-east-2
Use the output to identify the stack with the StackName property and its current status with the StackStatus property. It should be in the CREATE_COMPLETE or UPDATE_COMPLETE state if it was created correctly.
# List all the events in reverse chronological order (most recent to least recent)
aws cloudformation describe-stack-events --stack-name ChrisLaptop --region us-east-2
# add `| less` to run them through a pager
aws cloudformation describe-stack-events --stack-name ChrisLaptop --region us-east-2 | less
# or to limit to the latest 5 events
aws cloudformation describe-stack-events --stack-name ChrisLaptop --region us-east-2 --max-items 5
# and to get the next five events (using the NextToken property from the previous output)
aws cloudformation describe-stack-events --stack-name ChrisLaptop --region us-east-2 --max-items 5 --starting-token <NextToken>