Create Registry
| glue_create_registry | R Documentation | 
Creates a new registry which may be used to hold a collection of schemas¶
Description¶
Creates a new registry which may be used to hold a collection of schemas.
Usage¶
glue_create_registry(RegistryName, Description, Tags)
Arguments¶
RegistryName | 
[required] Name of the registry to be created of max length of 255, and may only contain letters, numbers, hyphen, underscore, dollar sign, or hash mark. No whitespace.  | 
Description | 
A description of the registry. If description is not provided, there will not be any default value for this.  | 
Tags | 
Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API.  | 
Value¶
A list with the following syntax:
list(
  RegistryArn = "string",
  RegistryName = "string",
  Description = "string",
  Tags = list(
    "string"
  )
)
Request syntax¶
svc$create_registry(
  RegistryName = "string",
  Description = "string",
  Tags = list(
    "string"
  )
)