AWS - Auto ScalingWhich of the following is the correct way to specify the minimum size in an AWS Auto Scaling group configuration using AWS CLI?Aaws autoscaling create-auto-scaling-group --minSize 2 --maxSize 5 --desiredCapacity 3Baws autoscaling create-auto-scaling-group --minimum 2 --maximum 5 --desired 3Caws autoscaling create-auto-scaling-group --min-size 2 --max-size 5 --desired-capacity 3Daws autoscaling create-auto-scaling-group --min 2 --max 5 --desired 3Check Answer
Step-by-Step SolutionSolution:Step 1: Recall AWS CLI parameter namesThe correct parameters are --min-size, --max-size, and --desired-capacity.Step 2: Check each option for correct syntaxaws autoscaling create-auto-scaling-group --min-size 2 --max-size 5 --desired-capacity 3 uses correct parameter names; others use incorrect or camelCase names.Final Answer:Correct CLI syntax uses --min-size, --max-size, --desired-capacity -> Option CQuick Check:CLI min size param = --min-size [OK]Quick Trick: Use --min-size, --max-size, --desired-capacity in CLI [OK]Common Mistakes:MISTAKESUsing camelCase instead of hyphenated parametersUsing incorrect parameter names like --minimumMixing parameter names with wrong spellings
Master "Auto Scaling" in AWS9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More AWS Quizzes AWS Lambda - Lambda concurrency and throttling - Quiz 12easy AWS Lambda - Why serverless matters - Quiz 13medium AWS Lambda - Creating a Lambda function - Quiz 6medium Auto Scaling - Launch templates - Quiz 6medium CloudWatch - Alarm actions (SNS, Auto Scaling) - Quiz 2easy DynamoDB - Partition key and sort key - Quiz 12easy DynamoDB - Secondary indexes (GSI, LSI) - Quiz 8hard Elastic Load Balancing - Target groups concept - Quiz 5medium RDS and Relational Databases - Why managed databases matter - Quiz 15hard RDS and Relational Databases - RDS pricing considerations - Quiz 6medium