Skip to content

Describe Tags

directconnect_describe_tags R Documentation

Describes the tags associated with the specified Direct Connect resources

Description

Describes the tags associated with the specified Direct Connect resources.

Usage

directconnect_describe_tags(resourceArns)

Arguments

resourceArns

[required] The Amazon Resource Names (ARNs) of the resources.

Value

A list with the following syntax:

list(
  resourceTags = list(
    list(
      resourceArn = "string",
      tags = list(
        list(
          key = "string",
          value = "string"
        )
      )
    )
  )
)

Request syntax

svc$describe_tags(
  resourceArns = list(
    "string"
  )
)