{
"$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-input-update-schema.json",
"title": "InputUpdate",
"description": "For a SQL-based Kinesis Data Analytics application, describes updates to a specific input configuration (identified by the InputId of an application). ",
"type": "object",
"properties": {
"InputId": {
"allOf": [
{
"$ref": "#/components/schemas/Id"
},
{
"description": "The input ID of the application input to be updated."
}
]
},
"NamePrefixUpdate": {
"allOf": [
{
"$ref": "#/components/schemas/InAppStreamName"
},
{
"description": "The name prefix for in-application streams that Kinesis Data Analytics creates for the specific streaming source."
}
]
},
"InputProcessingConfigurationUpdate": {
"allOf": [
{
"$ref": "#/components/schemas/InputProcessingConfigurationUpdate"
},
{
"description": "Describes updates to an InputProcessingConfiguration."
}
]
},
"KinesisStreamsInputUpdate": {
"allOf": [
{
"$ref": "#/components/schemas/KinesisStreamsInputUpdate"
},
{
"description": "If a Kinesis data stream is the streaming source to be updated, provides an updated stream Amazon Resource Name (ARN)."
}
]
},
"KinesisFirehoseInputUpdate": {
"allOf": [
{
"$ref": "#/components/schemas/KinesisFirehoseInputUpdate"
},
{
"description": "If a Kinesis Data Firehose delivery stream is the streaming source to be updated, provides an updated stream ARN."
}
]
},
"InputSchemaUpdate": {
"allOf": [
{
"$ref": "#/components/schemas/InputSchemaUpdate"
},
{
"description": "Describes the data format on the streaming source, and how record elements on the streaming source map to columns of the in-application stream that is created."
}
]
},
"InputParallelismUpdate": {
"allOf": [
{
"$ref": "#/components/schemas/InputParallelismUpdate"
},
{
"description": "Describes the parallelism updates (the number of in-application streams Kinesis Data Analytics creates for the specific streaming source)."
}
]
}
},
"required": [
"InputId"
]
}