From 21c44c5da5133b67ff316203b7acbb4c5477cd82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=85=20Daniel=20Danielecki?= Date: Sun, 25 Feb 2024 12:40:05 +0100 Subject: [PATCH] Fix: question13 correct answer (#12) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a6888cf..9c768b9 100644 --- a/README.md +++ b/README.md @@ -599,11 +599,11 @@ We are so thankful for every contribution, which makes sure we can deliver top-n ### A developer must extend an existing application that is based on the AWS Services Application Model (AWS SAM). The developer has used the AWS SAM CLI to create the project. The project contains different AWS Lambda functions. Which combination of commands must the developer use to redeploy the AWS SAM application? (Select TWO) -- [x] Sam init. -- [ ] Sam validate. -- [ ] Sam build. -- [x] Sam deploySam publish. -- [ ] Sam publish. +- [ ] sam init. +- [ ] sam validate. +- [x] sam build. +- [x] sam deploy. +- [ ] sam publish. **[⬆ Back to Top](#table-of-contents)**