Skip to content

List Tags For Resource

neptune_list_tags_for_resource R Documentation

Lists all tags on an Amazon Neptune resource

Description

Lists all tags on an Amazon Neptune resource.

Usage

neptune_list_tags_for_resource(ResourceName, Filters)

Arguments

ResourceName

[required] The Amazon Neptune resource with tags to be listed. This value is an Amazon Resource Name (ARN). For information about creating an ARN, see Constructing an Amazon Resource Name (ARN).

Filters

This parameter is not currently supported.

Value

A list with the following syntax:

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

Request syntax

svc$list_tags_for_resource(
  ResourceName = "string",
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  )
)