Module Values_0.SchemaIdSource

The unique ID of the schema in the Glue schema registry.

Sourcetype nonrec t = {
  1. schemaArn : GlueResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided.

    *)
  2. schemaName : SchemaRegistryNameString.t option;
    (*

    The name of the schema. One of SchemaArn or SchemaName has to be provided.

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

    The name of the schema registry that contains the schema.

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