Remove Tags
cloudtrail_remove_tags | R Documentation |
Removes the specified tags from a trail, event data store, dashboard, or channel¶
Description¶
Removes the specified tags from a trail, event data store, dashboard, or channel.
Usage¶
cloudtrail_remove_tags(ResourceId, TagsList)
Arguments¶
ResourceId |
[required] Specifies the ARN of the trail, event data store, dashboard, or channel from which tags should be removed. Example trail ARN format:
Example event data store ARN format: Example dashboard ARN format:
Example channel ARN format:
|
TagsList |
[required] Specifies a list of tags to be removed. |
Value¶
An empty list.
Request syntax¶
svc$remove_tags(
ResourceId = "string",
TagsList = list(
list(
Key = "string",
Value = "string"
)
)
)