codedeploy:UntagResource is a Tagging access-level action in the codedeploy service. Grants permission to disassociate a resource from a list of tags. The resource is identified by the ResourceArn input parameter. The tags are identfied by the list of keys in the TagKeys input parameter
ARNs that codedeploy:UntagResource can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants codedeploy:UntagResource.
Filters actions based on tag key-value pairs attached to the resource
A minimal policy that allows codedeploy:UntagResource. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowCodedeployUntagResource",
"Effect": "Allow",
"Action": "codedeploy:UntagResource",
"Resource": "*"
}
]
}