schema_versions_diffs
Creates, updates, deletes, gets or lists a schema_versions_diffs resource.
Overview
| Name | schema_versions_diffs |
| Type | Resource |
| Id | aws.glue.schema_versions_diffs |
Fields
The following fields are returned by SELECT queries:
- get_schema_versions_diff
| Name | Datatype | Description |
|---|---|---|
diff | string | The difference between schemas as a string in JsonPatch format. (pattern: <code>.\S.</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_schema_versions_diff | select | region | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_schema_versions_diff
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
;