List Tags For Resource
| elasticbeanstalk_list_tags_for_resource | R Documentation |
Return the tags applied to an AWS Elastic Beanstalk resource¶
Description¶
Return the tags applied to an AWS Elastic Beanstalk resource. The response contains a list of tag key-value pairs.
Elastic Beanstalk supports tagging of all of its resources. For details about resource tagging, see Tagging Application Resources.
Usage¶
elasticbeanstalk_list_tags_for_resource(ResourceArn)
Arguments¶
ResourceArn |
[required] The Amazon Resource Name (ARN) of the resouce for which a tag list is requested. Must be the ARN of an Elastic Beanstalk resource. |
Value¶
A list with the following syntax:
list(
ResourceArn = "string",
ResourceTags = list(
list(
Key = "string",
Value = "string"
)
)
)
Request syntax¶
svc$list_tags_for_resource(
ResourceArn = "string"
)