Chapter 10: Deploying Serverless Applications Using AWS SAM
- Yes, by using CloudFormation-specific resource types.
sam local start-api
.- No, SAM CLI doesn't have this command. You will have to use AWS CLI to delete the stack (
aws cloudformation delete-stack
). - It is, but you have to use the CloudFormation-specific type for DynamoDB, since
SimpleTable
doesn't have this property. - The application's source code and its dependencies are uploaded to S3 as a ZIP file. The template is altered to point to S3 for the source code and is saved on disk or printed to the Terminal output.