Tag Resource
personalize_tag_resource | R Documentation |
Add a list of tags to a resource¶
Description¶
Add a list of tags to a resource.
Usage¶
personalize_tag_resource(resourceArn, tags)
Arguments¶
resourceArn |
[required] The resource's Amazon Resource Name (ARN). |
tags |
[required] Tags to apply to the resource. For more information see Tagging Amazon Personalize resources. |
Value¶
An empty list.
Request syntax¶
svc$tag_resource(
resourceArn = "string",
tags = list(
list(
tagKey = "string",
tagValue = "string"
)
)
)