Module Values_2.GetSchemaVersionsDiffInputSource

Fetches the schema version difference in the specified difference type between two stored schema versions in the Schema Registry. This API allows you to compare two schema versions between two schema definitions under the same schema.

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

    This is a wrapper structure to contain schema identity fields. The structure contains: SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of SchemaArn or SchemaName has to be provided. SchemaId$SchemaName: The name of the schema. One of SchemaArn or SchemaName has to be provided.

    *)
  2. firstSchemaVersionNumber : SchemaVersionNumber.t;
    (*

    The first of the two schema versions to be compared.

    *)
  3. secondSchemaVersionNumber : SchemaVersionNumber.t;
    (*

    The second of the two schema versions to be compared.

    *)
  4. schemaDiffType : SchemaDiffType.t;
    (*

    Refers to SYNTAX_DIFF, which is the currently supported diff type.

    *)
}
Sourceval context_ : string
Sourceval make : schemaId:Values_0.SchemaId.t -> firstSchemaVersionNumber:SchemaVersionNumber.t -> secondSchemaVersionNumber:SchemaVersionNumber.t -> schemaDiffType:SchemaDiffType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of LatestSchemaVersionBoolean.t | `Long of Values_0.VersionLongNumber.t | `String of string ]) 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