Skip to content

List Tags for Resource

fms_list_tags_for_resource R Documentation

Retrieves the list of tags for the specified Amazon Web Services resource

Description

Retrieves the list of tags for the specified Amazon Web Services resource.

Usage

fms_list_tags_for_resource(ResourceArn)

Arguments

ResourceArn

[required] The Amazon Resource Name (ARN) of the resource to return tags for. The Firewall Manager resources that support tagging are policies, applications lists, and protocols lists.

Value

A list with the following syntax:

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

Request syntax

svc$list_tags_for_resource(
  ResourceArn = "string"
)