An Amazon EC2 administrator created the following policy associated with an IAM group containing several users: ```json { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": "ec2:TerminateInstances", "Resource": "*", "Condition": { "IpAddress": { "aws:SourceIp": "10.100.100.0/24" } } }, { "Effect": "Deny", "Action": "ec2:*", "Resource": "*", "Condition": { "StringNotEquals": { "ec2:Region": "us-east-1" } } } ] } ``` What is the effect of this policy? | AWS Certified Solutions Architect - Associate Quiz - LeetQuiz