Module Values_0.SchemaReferenceSource

An object that references a schema stored in the Glue Schema Registry.

Sourcetype nonrec t = {
  1. schemaId : SchemaId.t option;
    (*

    A structure that contains schema identity fields. Either this or the SchemaVersionId has to be provided.

    *)
  2. schemaVersionId : SchemaVersionIdString.t option;
    (*

    The unique ID assigned to a version of the schema. Either this or the SchemaId has to be provided.

    *)
  3. schemaVersionNumber : VersionLongNumber.t option;
    (*

    The version number of the schema.

    *)
}
Sourceval make : ?schemaId:??? -> ?schemaVersionId:??? -> ?schemaVersionNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of VersionLongNumber.t | `String of SchemaVersionIdString.t | `Structure of (string * [> `String of GlueResourceArn.t ]) list ]) 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