Module Values.AwsEventSchemasRegistryDetailsSource

A schema defines the structure of events that are sent to Amazon EventBridge. Schema registries are containers for schemas. They collect and organize schemas so that your schemas are in logical groups.

Sourcetype nonrec t = {
  1. description : NonEmptyString.t option;
    (*

    A description of the registry to be created.

    *)
  2. registryArn : NonEmptyString.t option;
    (*

    The Amazon Resource Name (ARN) of the registry.

    *)
  3. registryName : NonEmptyString.t option;
    (*

    The name of the schema registry.

    *)
}
Sourceval make : ?description:??? -> ?registryArn:??? -> ?registryName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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