List Tags For Resource
| clouddirectory_list_tags_for_resource | R Documentation |
Returns tags for a resource¶
Description¶
Returns tags for a resource. Tagging is currently supported only for directories with a limit of 50 tags per directory. All 50 tags are returned for a given directory with this API call.
Usage¶
clouddirectory_list_tags_for_resource(ResourceArn, NextToken,
MaxResults)
Arguments¶
ResourceArn |
[required] The Amazon Resource Name (ARN) of the resource. Tagging is only supported for directories. |
NextToken |
The pagination token. This is for future use. Currently pagination is not supported for tagging. |
MaxResults |
The |
Value¶
A list with the following syntax:
list(
Tags = list(
list(
Key = "string",
Value = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_tags_for_resource(
ResourceArn = "string",
NextToken = "string",
MaxResults = 123
)