Describe Tags
elb_describe_tags | R Documentation |
Describes the tags associated with the specified load balancers¶
Description¶
Describes the tags associated with the specified load balancers.
Usage¶
elb_describe_tags(LoadBalancerNames)
Arguments¶
LoadBalancerNames |
[required] The names of the load balancers. |
Value¶
A list with the following syntax:
list(
TagDescriptions = list(
list(
LoadBalancerName = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
)
)
Request syntax¶
svc$describe_tags(
LoadBalancerNames = list(
"string"
)
)
Examples¶
## Not run:
# This example describes the tags for the specified load balancer.
svc$describe_tags(
LoadBalancerNames = list(
"my-load-balancer"
)
)
## End(Not run)