Topic 1 Question 146
A developer is building an application that uses AWS API Gateway APIs, AWS Lambda functions, and AWS DynamoDB tables. The developer uses the AWS Serverless Application Model (AWS SAM) to build and run serverless applications on AWS. Each time the developer pushes changes for only to the Lambda functions, all the artifacts in the application are rebuilt.
The developer wants to implement AWS SAM Accelerate by running a command to only redeploy the Lambda functions that have changed.
Which command will meet these requirements?
sam deploy --force-upload
sam deploy --no-execute-changeset
sam package
sam sync --watch
ユーザの投票
コメント(2)
- 正解だと思う選択肢: D
The correct answer is (D).
The sam sync --watch command will only deploy the Lambda functions that have changed. This command uses AWS SAM Accelerate to compare the local versions of your Lambda functions to the versions deployed in AWS. If there are differences, the command deploys only the changed Lambda functions.
👍 5Digo30sp2023/10/06 - 正解だと思う選択肢: D
D is correct
👍 1dilleman2023/10/10
シャッフルモード