AWS - Auto ScalingWhich is the correct JSON snippet to specify the instance type in a launch template?A{ "InstanceType": "t3.micro" }B{ "Instance": "t3.micro" }C{ "TypeInstance": "t3.micro" }D{ "InstanceType": t3.micro }Check Answer
Step-by-Step SolutionSolution:Step 1: Recall launch template JSON syntaxThe correct key for instance type is "InstanceType" and the value must be a string in quotes.Step 2: Check each option for syntax correctness{ "InstanceType": "t3.micro" } uses correct key and quotes around value. { "InstanceType": t3.micro } misses quotes around value, causing syntax error.Final Answer:{ "InstanceType": "t3.micro" } -> Option AQuick Check:Correct JSON key and string value = B [OK]Quick Trick: Use "InstanceType" key with quoted string value in JSON [OK]Common Mistakes:Missing quotes around string valuesUsing incorrect key namesConfusing JSON syntax with other formats
Master "Auto Scaling" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes API Gateway - API deployment and stages - Quiz 2easy AWS Lambda - Lambda function concept - Quiz 2easy Auto Scaling - Why auto scaling matters - Quiz 1easy CloudWatch - Log groups and log streams - Quiz 14medium DynamoDB - Time to live (TTL) for expiration - Quiz 4medium DynamoDB - Tables, items, and attributes - Quiz 12easy Elastic Load Balancing - SSL/TLS termination - Quiz 1easy Elastic Load Balancing - Health checks configuration - Quiz 5medium Elastic Load Balancing - ALB vs NLB decision - Quiz 6medium SNS and SQS - SNS topics and subscriptions - Quiz 3easy