вам нужно создать новую политику и добавить строку ниже в JSON
"Condition": {"StringEquals": {"aws:RequestedRegion": "ap-south-1"}}
ниже мой весь JSON для региона Мумбаи
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "*",
"Resource": "*",
"Condition": {
"StringEquals": {
"aws:RequestedRegion": "ap-south-1"
}
}
}
]
}