Skip to content

List Tags For Resource

healthlake_list_tags_for_resource R Documentation

Returns a list of all existing tags associated with a data store

Description

Returns a list of all existing tags associated with a data store.

Usage

healthlake_list_tags_for_resource(ResourceARN)

Arguments

ResourceARN

[required] The Amazon Resource Name(ARN) of the data store for which tags are being added.

Value

A list with the following syntax:

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

Request syntax

svc$list_tags_for_resource(
  ResourceARN = "string"
)