Skip to content

List Tags

memorydb_list_tags R Documentation

Lists all tags currently on a named resource

Description

Lists all tags currently on a named resource. A tag is a key-value pair where the key and value are case-sensitive. You can use tags to categorize and track your MemoryDB resources. For more information, see Tagging your MemoryDB resources.

When you add or remove tags from multi region clusters, you might not immediately see the latest effective tags in the ListTags API response due to it being eventually consistent specifically for multi region clusters. For more information, see Tagging your MemoryDB resources.

Usage

memorydb_list_tags(ResourceArn)

Arguments

ResourceArn

[required] The Amazon Resource Name (ARN) of the resource for which you want the list of tags.

Value

A list with the following syntax:

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

Request syntax

svc$list_tags(
  ResourceArn = "string"
)