Amazon Glue · Schema
UpdateSchemaInput
UpdateSchemaInput schema from Amazon Glue API
AnalyticsData CatalogData IntegrationData PipelineETLServerless
Properties
| Name | Type | Description |
|---|---|---|
| SchemaId | object | |
| SchemaVersionNumber | object | |
| Compatibility | object | |
| Description | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue/refs/heads/main/json-schema/glue-update-schema-input-schema.json",
"title": "UpdateSchemaInput",
"description": "UpdateSchemaInput schema from Amazon Glue API",
"type": "object",
"properties": {
"SchemaId": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaId"
},
{
"description": "<p>This is a wrapper structure to contain schema identity fields. The structure contains:</p> <ul> <li> <p>SchemaId$SchemaArn: The Amazon Resource Name (ARN) of the schema. One of <code>SchemaArn</code> or <code>SchemaName</code> has to be provided.</p> </li> <li> <p>SchemaId$SchemaName: The name of the schema. One of <code>SchemaArn</code> or <code>SchemaName</code> has to be provided.</p> </li> </ul>"
}
]
},
"SchemaVersionNumber": {
"allOf": [
{
"$ref": "#/components/schemas/SchemaVersionNumber"
},
{
"description": "Version number required for check pointing. One of <code>VersionNumber</code> or <code>Compatibility</code> has to be provided."
}
]
},
"Compatibility": {
"allOf": [
{
"$ref": "#/components/schemas/Compatibility"
},
{
"description": "The new compatibility setting for the schema."
}
]
},
"Description": {
"allOf": [
{
"$ref": "#/components/schemas/DescriptionString"
},
{
"description": "The new description for the schema."
}
]
}
},
"required": [
"SchemaId"
]
}