Bird
0
0

Which of the following is the correct way to specify the minimum size in an AWS Auto Scaling group configuration using AWS CLI?

easy📝 Syntax Q3 of 15
AWS - Auto Scaling
Which 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 3
Baws autoscaling create-auto-scaling-group --minimum 2 --maximum 5 --desired 3
Caws autoscaling create-auto-scaling-group --min-size 2 --max-size 5 --desired-capacity 3
Daws autoscaling create-auto-scaling-group --min 2 --max 5 --desired 3
Step-by-Step Solution
Solution:
  1. Step 1: Recall AWS CLI parameter names

    The correct parameters are --min-size, --max-size, and --desired-capacity.
  2. Step 2: Check each option for correct syntax

    aws autoscaling create-auto-scaling-group --min-size 2 --max-size 5 --desired-capacity 3 uses correct parameter names; others use incorrect or camelCase names.
  3. Final Answer:

    Correct CLI syntax uses --min-size, --max-size, --desired-capacity -> Option C
  4. Quick Check:

    CLI min size param = --min-size [OK]
Quick Trick: Use --min-size, --max-size, --desired-capacity in CLI [OK]
Common Mistakes:
MISTAKES
  • Using camelCase instead of hyphenated parameters
  • Using incorrect parameter names like --minimum
  • Mixing parameter names with wrong spellings

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More AWS Quizzes