Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam AWS Certified Developer - Associate DVA-C02 All Questions

View all questions & answers for the AWS Certified Developer - Associate DVA-C02 exam

Exam AWS Certified Developer - Associate DVA-C02 topic 1 question 309 discussion

A company is adopting serverless computing for some of its new services. A development team needs to create a serverless infrastructure by using AWS Serverless Application Model (AWS SAM). All infrastructure must be deployed by using AWS CloudFormation templates.

What should the development team do to meet these requirements?

  • A. Add a Resources section to the CloudFormation templates that contains AWS::Lambda::Function resources.
  • B. Add a Mappings section to the CloudFormation templates that contains AWS::Serverless::Function and AWS::Serverless::API.
  • C. Add a Transform section to the CloudFormation templates. Use the AWS SAM syntax to define the resources.
  • D. Add a Parameters section to the CloudFormation templates that specifies the relevant AWS SAM Globals section.
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
albert_kuo
2 weeks, 1 day ago
Selected Answer: C
AWSTemplateFormatVersion: '2010-09-09' Transform: 'AWS::Serverless-2016-10-31' Resources: MyFunction: Type: AWS::Serverless::Function Properties: Handler: index.handler Runtime: nodejs14.x CodeUri: s3://my-bucket/my-function.zip Events: ApiEvent: Type: Api Properties: Path: /myfunction Method: get
upvoted 1 times
...
65703c1
4 months, 3 weeks ago
Selected Answer: C
C is the correct answer.
upvoted 1 times
...
KarBiswa
7 months, 1 week ago
Selected Answer: C
https://docs.aws.amazon.com/codecatalyst/latest/userguide/deploy-tut-lambda.html#:~:text=AWSTemplateFormatVersion%3A%20%272010%2D09%2D09%27%0ATransform%3A%20AWS%3A%3AServerless%2D2016%2D10%2D31
upvoted 4 times
...
koltysh
7 months, 1 week ago
it will be C
upvoted 3 times
...
nder
7 months, 1 week ago
Selected Answer: C
Using SAM to define the CF templates
upvoted 3 times
...
monishvster
7 months, 3 weeks ago
Selected Answer: C
Should be C
upvoted 4 times
...
CrescentShared
7 months, 4 weeks ago
Selected Answer: C
Got this question in exam.
upvoted 4 times
...
tgv
8 months ago
the correct answer is C
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...