Learn R Programming

paws.database (version 0.1.12)

dax_untag_resource: Removes the association of tags from a DAX resource

Description

Removes the association of tags from a DAX resource. You can call untag_resource up to 5 times per second, per account.

Usage

dax_untag_resource(ResourceName, TagKeys)

Value

A list with the following syntax:

list(
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)

Arguments

ResourceName

[required] The name of the DAX resource from which the tags should be removed.

TagKeys

[required] A list of tag keys. If the DAX cluster has any tags with these keys, then the tags are removed from the cluster.

Request syntax

svc$untag_resource(
  ResourceName = "string",
  TagKeys = list(
    "string"
  )
)