CloudFormation Question 9: What is the purpose of the DependsOn attribute in the template below? ```yaml Resources: MyDB: Type: AWS::RDS::DBInstance Properties: DBInstanceClass: db.t3.micro Engine: mysql MasterUsername: admin MasterUserPassword: !Ref DBPassword AppServer: Type: AWS::EC2::Instance DependsOn: MyDB Properties: ImageId: ami-0abcdef1234567890 InstanceType: t3.small ``` | AWS Certified CloudOps Engineer – Associate Quiz - LeetQuiz