Add Tags
elasticsearchservice_add_tags | R Documentation |
Attaches tags to an existing Elasticsearch domain¶
Description¶
Attaches tags to an existing Elasticsearch domain. Tags are a set of case-sensitive key value pairs. An Elasticsearch domain may have up to 10 tags. See Tagging Amazon Elasticsearch Service Domains for more information.
Usage¶
elasticsearchservice_add_tags(ARN, TagList)
Arguments¶
ARN |
[required] Specify the |
TagList |
[required] List of |
Value¶
An empty list.
Request syntax¶
svc$add_tags(
ARN = "string",
TagList = list(
list(
Key = "string",
Value = "string"
)
)
)