Add Tags
opensearchservice_add_tags | R Documentation |
Attaches tags to an existing Amazon OpenSearch Service domain, data source, or application¶
Description¶
Attaches tags to an existing Amazon OpenSearch Service domain, data source, or application.
Tags are a set of case-sensitive key-value pairs. A domain, data source, or application can have up to 10 tags. For more information, see Tagging Amazon OpenSearch Service resources.
Usage¶
opensearchservice_add_tags(ARN, TagList)
Arguments¶
ARN |
[required] Amazon Resource Name (ARN) for the OpenSearch Service domain, data source, or application to which you want to attach resource tags. |
TagList |
[required] List of resource tags. |
Value¶
An empty list.
Request syntax¶
svc$add_tags(
ARN = "string",
TagList = list(
list(
Key = "string",
Value = "string"
)
)
)