Create Tags
redshift_create_tags | R Documentation |
Adds tags to a cluster¶
Description¶
Adds tags to a cluster.
A resource can have up to 50 tags. If you try to create more than 50 tags for a resource, you will receive an error and the attempt will fail.
If you specify a key that already exists for the resource, the value for that key will be updated with the new value.
Usage¶
redshift_create_tags(ResourceName, Tags)
Arguments¶
ResourceName |
[required] The Amazon Resource Name (ARN) to which you want to
add the tag or tags. For example,
|
Tags |
[required] One or more name/value pairs to add as tags to the
specified resource. Each tag name is passed in with the parameter
|
Value¶
An empty list.
Request syntax¶
svc$create_tags(
ResourceName = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)