{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-managed-apache-flink/refs/heads/main/json-schema/amazon-managed-apache-flink-sql-application-configuration-update-schema.json",
"title": "SqlApplicationConfigurationUpdate",
"description": "Describes updates to the input streams, destination streams, and reference data sources for a SQL-based Kinesis Data Analytics application.",
"type": "object",
"properties": {
"InputUpdates": {
"allOf": [
{
"$ref": "#/components/schemas/InputUpdates"
},
{
"description": "The array of InputUpdate objects describing the new input streams used by the application."
}
]
},
"OutputUpdates": {
"allOf": [
{
"$ref": "#/components/schemas/OutputUpdates"
},
{
"description": "The array of OutputUpdate objects describing the new destination streams used by the application."
}
]
},
"ReferenceDataSourceUpdates": {
"allOf": [
{
"$ref": "#/components/schemas/ReferenceDataSourceUpdates"
},
{
"description": "The array of ReferenceDataSourceUpdate objects describing the new reference data sources used by the application."
}
]
}
}
}