Module Values_1.CreateRegistryInputSource

Creates a new registry which may be used to hold a collection of schemas.

Sourcetype nonrec t = {
  1. registryName : Values_0.SchemaRegistryNameString.t;
    (*

    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.

    *)
  2. description : Values_0.DescriptionString.t option;
    (*

    A description of the registry. If description is not provided, there will not be any default value for this.

    *)
  3. tags : TagsMap.t option;
    (*

    Amazon Web Services tags that contain a key value pair and may be searched by console, command line, or API.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> registryName:Values_0.SchemaRegistryNameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of Values_0.SchemaRegistryNameString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t