Skip to main content

schema_versions_diffs

Creates, updates, deletes, gets or lists a schema_versions_diffs resource.

Overview

Nameschema_versions_diffs
TypeResource
Idaws.glue.schema_versions_diffs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
diffstringThe difference between schemas as a string in JsonPatch format. (pattern: <code>.\S.</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_schema_versions_diffselectregionFetches 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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.

SELECT
diff
FROM aws.glue.schema_versions_diffs
WHERE region = '{{ region }}' -- required
;