Class: Aws::EKS::Types::ListTagsForResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EKS::Types::ListTagsForResourceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eks/types.rb
Overview
Note:
When making an API call, you may pass ListTagsForResourceRequest data as a hash:
{
resource_arn: "String", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the resource for which to list the tags.
Instance Attribute Details
#resource_arn ⇒ String
The Amazon Resource Name (ARN) that identifies the resource for which to list the tags. Currently, the supported resources are Amazon EKS clusters and managed node groups.
2469 2470 2471 2472 2473 |
# File 'lib/aws-sdk-eks/types.rb', line 2469 class ListTagsForResourceRequest < Struct.new( :resource_arn) SENSITIVE = [] include Aws::Structure end |