## Question 14 What does the WaitCondition and CreationPolicy configuration below enforce? ```yaml Resources: WebASG: Type: AWS::AutoScaling::AutoScalingGroup CreationPolicy: ResourceSignal: Count: 3 Timeout: PT15M Properties: MinSize: '3' MaxSize: '6' LaunchTemplate: LaunchTemplateId: !Ref MyLaunchTemplate Version: !GetAtt MyLaunchTemplate.LatestVersionNumber ``` | AWS Certified Cloud Practitioner Quiz - LeetQuiz