Untag Resource
ssmcontacts_untag_resource | R Documentation |
Removes tags from the specified resource¶
Description¶
Removes tags from the specified resource.
Usage¶
ssmcontacts_untag_resource(ResourceARN, TagKeys)
Arguments¶
ResourceARN |
[required] The Amazon Resource Name (ARN) of the contact or escalation plan. |
TagKeys |
[required] The key of the tag that you want to remove. |
Value¶
An empty list.
Request syntax¶
svc$untag_resource(
ResourceARN = "string",
TagKeys = list(
"string"
)
)
Examples¶
## Not run:
# The following untag-resource example removes the group1 tag from the
# specified contact.
svc$untag_resource(
ResourceARN = "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
TagKeys = list(
"group1"
)
)
## End(Not run)