Tag Resource
bedrock_tag_resource | R Documentation |
Associate tags with a resource¶
Description¶
Associate tags with a resource. For more information, see Tagging resources in the Amazon Bedrock User Guide.
Usage¶
bedrock_tag_resource(resourceARN, tags)
Arguments¶
resourceARN |
[required] The Amazon Resource Name (ARN) of the resource to tag. |
tags |
[required] Tags to associate with the resource. |
Value¶
An empty list.
Request syntax¶
svc$tag_resource(
resourceARN = "string",
tags = list(
list(
key = "string",
value = "string"
)
)
)