Create Registry
schemas_create_registry | R Documentation |
Creates a registry¶
Description¶
Creates a registry.
Usage¶
schemas_create_registry(Description, RegistryName, Tags)
Arguments¶
Description |
A description of the registry to be created. |
RegistryName |
[required] The name of the registry. |
Tags |
Tags to associate with the registry. |
Value¶
A list with the following syntax:
list(
Description = "string",
RegistryArn = "string",
RegistryName = "string",
Tags = list(
"string"
)
)
Request syntax¶
svc$create_registry(
Description = "string",
RegistryName = "string",
Tags = list(
"string"
)
)