Skip to content

List Tags

dax_list_tags R Documentation

List all of the tags for a DAX cluster

Description

List all of the tags for a DAX cluster. You can call list_tags up to 10 times per second, per account.

Usage

dax_list_tags(ResourceName, NextToken)

Arguments

ResourceName

[required] The name of the DAX resource to which the tags belong.

NextToken

An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token.

Value

A list with the following syntax:

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

Request syntax

svc$list_tags(
  ResourceName = "string",
  NextToken = "string"
)