ecs_untag_resource: Deletes specified tags from a resource
Description
Deletes specified tags from a resource.
Usage
ecs_untag_resource(resourceArn, tagKeys)
Value
An empty list.
Arguments
resourceArn
[required] The Amazon Resource Name (ARN) of the resource from which to delete
tags. Currently, the supported resources are Amazon ECS capacity
providers, tasks, services, task definitions, clusters, and container
instances.
if (FALSE) {
# This example deletes the 'team' tag from the 'dev' cluster.svc$untag_resource(
resourceArn = "arn:aws:ecs:region:aws_account_id:cluster/dev",
tagKeys = list(
"team" )
)
}