Skip to content

List Tags For Resource

directoryservice_list_tags_for_resource R Documentation

Lists all tags on a directory

Description

Lists all tags on a directory.

Usage

directoryservice_list_tags_for_resource(ResourceId, NextToken, Limit)

Arguments

ResourceId

[required] Identifier (ID) of the directory for which you want to retrieve tags.

NextToken

Reserved for future use.

Limit

Reserved for future use.

Value

A list with the following syntax:

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

Request syntax

svc$list_tags_for_resource(
  ResourceId = "string",
  NextToken = "string",
  Limit = 123
)