Skip to content

List Tags For Resource

docdb_list_tags_for_resource R Documentation

Lists all tags on an Amazon DocumentDB resource

Description

Lists all tags on an Amazon DocumentDB resource.

Usage

docdb_list_tags_for_resource(ResourceName, Filters)

Arguments

ResourceName

[required] The Amazon DocumentDB resource with tags to be listed. This value is 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"
      )
    )
  )
)