Skip to content

List Tags For Resource

eks_list_tags_for_resource R Documentation

List the tags for an Amazon EKS resource

Description

List the tags for an Amazon EKS resource.

Usage

eks_list_tags_for_resource(resourceArn)

Arguments

resourceArn

[required] The Amazon Resource Name (ARN) that identifies the resource to list tags for.

Value

A list with the following syntax:

list(
  tags = list(
    "string"
  )
)

Request syntax

svc$list_tags_for_resource(
  resourceArn = "string"
)

Examples

## Not run: 
# This example lists all of the tags for the `beta` cluster.
svc$list_tags_for_resource(
  resourceArn = "arn:aws:eks:us-west-2:012345678910:cluster/beta"
)

## End(Not run)