Skip to content

Remove Tags

cloudtrail_remove_tags R Documentation

Removes the specified tags from a trail, event data store, or channel

Description

Removes the specified tags from a trail, event data store, or channel.

Usage

cloudtrail_remove_tags(ResourceId, TagsList)

Arguments

ResourceId

[required] Specifies the ARN of the trail, event data store, or channel from which tags should be removed.

Example trail ARN format: arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail

Example event data store ARN format: ⁠arn:aws:cloudtrail:us-east-2:123456789012:eventdatastore/EXAMPLE-f852-4e8f-8bd1-bcf6cEXAMPLE⁠

Example channel ARN format: arn:aws:cloudtrail:us-east-2:123456789012:channel/01234567890

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"
    )
  )
)