SAM Flashcards
SAM
Open source framework for building a serverless application
AWS Serverless Application Model (SAM)
SAM
Used to define your serverless app
AWS SAM specifications
SAM
Declaration. Transform: AWS::Serverless-2016-10-31
Required for AWS Sam template
SAM
Required for SAM templates
Resources section
SAM
AWS::Serverless::API,
AWS::Serverless::Function,
AWS::Serverless::SimpleTable
Supported Sam reference type
SAM
After you develop and test your serverless app locally, you can deploy your app by using the following commands
sam package
–and–
sam deploy
SAM
sam package and sam deploy are directly equivalent to their AWS CLI equivalents
aws cloudformation package
–and–
aws cloudformation deploy