Tag Resource
qldb_tag_resource | R Documentation |
Adds one or more tags to a specified Amazon QLDB resource¶
Description¶
Adds one or more tags to a specified Amazon QLDB resource.
A resource can have up to 50 tags. If you try to create more than 50 tags for a resource, your request fails and returns an error.
Usage¶
qldb_tag_resource(ResourceArn, Tags)
Arguments¶
ResourceArn |
[required] The Amazon Resource Name (ARN) to which you want to add the tags. For example:
|
Tags |
[required] The key-value pairs to add as tags to the specified QLDB resource. Tag keys are case sensitive. If you specify a key that already exists for the resource, your request fails and returns an error. Tag values are case sensitive and can be null. |
Value¶
An empty list.
Request syntax¶
svc$tag_resource(
ResourceArn = "string",
Tags = list(
"string"
)
)