ds:UpdateDirectory is a Write access-level action in the ds service. Grants permission to update the configurations like service account credentials or DNS server IP addresses for the specified directory
ARNs that ds:UpdateDirectory can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants ds:UpdateDirectory.
Filters access by the AWS DS Resource being acted upon
A minimal policy that allows ds:UpdateDirectory. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowDsUpdateDirectory",
"Effect": "Allow",
"Action": "ds:UpdateDirectory",
"Resource": "*"
}
]
}