If you find yourself making an attempt to create an RDS database and also you get the dreaded error message:
IAM position ARN worth is invalid or doesn't embrace the required permissions for: ENHANCED_MONITORING
Then you could just be sure you are assuming the proper service precept:
monitoring.rds.amazonaws.com
Your code ought to look one thing like this:
{
"Model": "2012-10-17",
"Assertion": [
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": "cloudwatch.amazonaws.com"
}
},
{
"Action": "sts:AssumeRole",
"Effect": "Allow",
"Principal": {
"Service": "monitoring.rds.amazonaws.com"
}
}
]
}