List Tags
lambda_list_tags | R Documentation |
Returns a function, event source mapping, or code signing configuration's tags¶
Description¶
Returns a function, event source mapping, or code signing
configuration's
tags.
You can also view function tags with get_function
.
Usage¶
lambda_list_tags(Resource)
Arguments¶
Resource |
[required] The resource's Amazon Resource Name (ARN). Note: Lambda does not support adding tags to function aliases or versions. |
Value¶
A list with the following syntax:
list(
Tags = list(
"string"
)
)
Request syntax¶
svc$list_tags(
Resource = "string"
)
Examples¶
## Not run:
# The following example displays the tags attached to the my-function
# Lambda function.
svc$list_tags(
Resource = "arn:aws:lambda:us-west-2:123456789012:function:my-function"
)
## End(Not run)