Skip to content

List Tags For Resource

appfabric_list_tags_for_resource R Documentation

Returns a list of tags for a resource

Description

Returns a list of tags for a resource.

Usage

appfabric_list_tags_for_resource(resourceArn)

Arguments

resourceArn

[required] The Amazon Resource Name (ARN) of the resource for which you want to retrieve 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"
)