The following IAM policy is attached to an IAM group. This is the only policy applied to the group. ```json { "Version": "2012-10-17", "Statement": [ { "Sid": "1", "Effect": "Allow", "Action": "ec2:*", "Resource": "*", "Condition": { "StringEquals": { "ec2:Region": "us-east-1" } } }, { "Sid": "2", "Effect": "Deny", "Action": [ "ec2:StopInstances", "ec2:TerminateInstances" ], "Resource": "*", "Condition": { "BoolIfExists": {"aws:MultiFactorAuthPresent": false} } } ] } ``` What are the effective IAM permissions of this policy for group members? | AWS Certified Solutions Architect - Associate Quiz - LeetQuiz