ecs:UpdateDaemon

Write

ecs:UpdateDaemon is a Write access-level action in the ecs service. Grants permission to modify the parameters of a daemon

Resource types

ARNs that ecs:UpdateDaemon can be scoped to in an IAM policy.

arn:${Partition}:ecs:${Region}:${Account}:daemon/${ClusterName}/${DaemonName}
daemon

Condition keys

Keys you can use in the Condition block of a policy that grants ecs:UpdateDaemon.

aws:ResourceTag/${TagKey} String

Filters access by the tag key-value pairs attached to the resource

ecs:cluster ARN

Filters access by the ARN of an Amazon ECS cluster

Example IAM policy

A minimal policy that allows ecs:UpdateDaemon. Replace "Resource": "*" with a specific ARN to follow least privilege.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowEcsUpdateDaemon",
      "Effect": "Allow",
      "Action": "ecs:UpdateDaemon",
      "Resource": "*"
    }
  ]
}

Related actions in ecs

View all ecs actions →