Create Tag Option
servicecatalog_create_tag_option | R Documentation |
Creates a TagOption¶
Description¶
Creates a TagOption.
Usage¶
servicecatalog_create_tag_option(Key, Value)
Arguments¶
Key |
[required] The TagOption key. |
Value |
[required] The TagOption value. |
Value¶
A list with the following syntax:
list(
TagOptionDetail = list(
Key = "string",
Value = "string",
Active = TRUE|FALSE,
Id = "string",
Owner = "string"
)
)
Request syntax¶
svc$create_tag_option(
Key = "string",
Value = "string"
)