Bird
0
0

Given this snippet of a CloudFormation JSON template:

medium📝 Predict Output Q13 of 15
AWS - CloudFormation
Given this snippet of a CloudFormation JSON template:
{
  "Resources": {
    "MyBucket": {
      "Type": "AWS::S3::Bucket"
    }
  }
}

What resource will this template create?
AAn EC2 virtual server
BAn S3 storage bucket
CA Lambda function
DA VPC network
Step-by-Step Solution
Solution:
  1. Step 1: Read the resource type in the template

    The resource type is "AWS::S3::Bucket", which means an S3 storage bucket.
  2. Step 2: Match resource type to options

    Only An S3 storage bucket matches the S3 bucket resource type.
  3. Final Answer:

    An S3 storage bucket -> Option B
  4. Quick Check:

    "AWS::S3::Bucket" means S3 bucket = B [OK]
Quick Trick: Look for "Type" value to identify resource created [OK]
Common Mistakes:
  • Confusing S3 bucket with EC2 or Lambda
  • Ignoring the resource type string
  • Assuming resource names define type

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes