Skip to content

List Tags for Resource

sns_list_tags_for_resource R Documentation

List all tags added to the specified Amazon SNS topic

Description

List all tags added to the specified Amazon SNS topic. For an overview, see Amazon SNS Tags in the Amazon Simple Notification Service Developer Guide.

Usage

sns_list_tags_for_resource(ResourceArn)

Arguments

ResourceArn

[required] The ARN of the topic for which to list tags.

Value

A list with the following syntax:

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

Request syntax

svc$list_tags_for_resource(
  ResourceArn = "string"
)