published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
The Flink Table resource allows the creation and management of Aiven Tables.
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var table = new Aiven.FlinkJobTable("table", new Aiven.FlinkJobTableArgs
{
Project = data.Aiven_project.Pr1.Project,
ServiceName = aiven_flink.Flink.Service_name,
TableName = "<TABLE_NAME>",
IntegrationId = aiven_service_integration.Flink_kafka.Service_id,
JdbcTable = "<JDBC_TABLE_NAME>",
KafkaTopic = aiven_kafka_topic.Table_topic.Topic_name,
SchemaSql = @" `+""`cpu`""+` INT,
`+""`node`""+` INT,
`+""`occurred_at`""+` TIMESTAMP(3) METADATA FROM 'timestamp',
WATERMARK FOR `+""`occurred_at`""+` AS `+""`occurred_at`""+` - INTERVAL '5' SECOND
",
});
}
}
package main
import (
"fmt"
"github.com/pulumi/pulumi-aiven/sdk/v4/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewFlinkJobTable(ctx, "table", &aiven.FlinkJobTableArgs{
Project: pulumi.Any(data.Aiven_project.Pr1.Project),
ServiceName: pulumi.Any(aiven_flink.Flink.Service_name),
TableName: pulumi.String("<TABLE_NAME>"),
IntegrationId: pulumi.Any(aiven_service_integration.Flink_kafka.Service_id),
JdbcTable: pulumi.String("<JDBC_TABLE_NAME>"),
KafkaTopic: pulumi.Any(aiven_kafka_topic.Table_topic.Topic_name),
SchemaSql: pulumi.String(fmt.Sprintf("%v%v%v%v", " `+\"`cpu`\"+` INT,\n", " `+\"`node`\"+` INT,\n", " `+\"`occurred_at`\"+` TIMESTAMP(3) METADATA FROM 'timestamp',\n", " WATERMARK FOR `+\"`occurred_at`\"+` AS `+\"`occurred_at`\"+` - INTERVAL '5' SECOND\n")),
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const table = new aiven.FlinkJobTable("table", {
project: data.aiven_project.pr1.project,
serviceName: aiven_flink.flink.service_name,
tableName: "<TABLE_NAME>",
integrationId: aiven_service_integration.flink_kafka.service_id,
jdbcTable: "<JDBC_TABLE_NAME>",
kafkaTopic: aiven_kafka_topic.table_topic.topic_name,
schemaSql: ` `+"`cpu`"+` INT,
`+"`node`"+` INT,
`+"`occurred_at`"+` TIMESTAMP(3) METADATA FROM 'timestamp',
WATERMARK FOR `+"`occurred_at`"+` AS `+"`occurred_at`"+` - INTERVAL '5' SECOND
`,
});
import pulumi
import pulumi_aiven as aiven
table = aiven.FlinkJobTable("table",
project=data["aiven_project"]["pr1"]["project"],
service_name=aiven_flink["flink"]["service_name"],
table_name="<TABLE_NAME>",
integration_id=aiven_service_integration["flink_kafka"]["service_id"],
jdbc_table="<JDBC_TABLE_NAME>",
kafka_topic=aiven_kafka_topic["table_topic"]["topic_name"],
schema_sql=""" `+"`cpu`"+` INT,
`+"`node`"+` INT,
`+"`occurred_at`"+` TIMESTAMP(3) METADATA FROM 'timestamp',
WATERMARK FOR `+"`occurred_at`"+` AS `+"`occurred_at`"+` - INTERVAL '5' SECOND
""")
Example coming soon!
Create FlinkJobTable Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FlinkJobTable(name: string, args: FlinkJobTableArgs, opts?: CustomResourceOptions);@overload
def FlinkJobTable(resource_name: str,
args: FlinkJobTableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FlinkJobTable(resource_name: str,
opts: Optional[ResourceOptions] = None,
project: Optional[str] = None,
table_name: Optional[str] = None,
service_name: Optional[str] = None,
integration_id: Optional[str] = None,
schema_sql: Optional[str] = None,
kafka_key_fields: Optional[Sequence[str]] = None,
kafka_topic: Optional[str] = None,
kafka_value_format: Optional[str] = None,
like_options: Optional[str] = None,
kafka_startup_mode: Optional[str] = None,
kafka_key_format: Optional[str] = None,
kafka_connector_type: Optional[str] = None,
jdbc_table: Optional[str] = None)func NewFlinkJobTable(ctx *Context, name string, args FlinkJobTableArgs, opts ...ResourceOption) (*FlinkJobTable, error)public FlinkJobTable(string name, FlinkJobTableArgs args, CustomResourceOptions? opts = null)
public FlinkJobTable(String name, FlinkJobTableArgs args)
public FlinkJobTable(String name, FlinkJobTableArgs args, CustomResourceOptions options)
type: aiven:FlinkJobTable
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FlinkJobTableArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FlinkJobTableArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FlinkJobTableArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FlinkJobTableArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FlinkJobTableArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var flinkJobTableResource = new Aiven.FlinkJobTable("flinkJobTableResource", new()
{
Project = "string",
TableName = "string",
ServiceName = "string",
IntegrationId = "string",
SchemaSql = "string",
KafkaKeyFields = new[]
{
"string",
},
KafkaTopic = "string",
KafkaValueFormat = "string",
LikeOptions = "string",
KafkaStartupMode = "string",
KafkaKeyFormat = "string",
KafkaConnectorType = "string",
JdbcTable = "string",
});
example, err := aiven.NewFlinkJobTable(ctx, "flinkJobTableResource", &aiven.FlinkJobTableArgs{
Project: pulumi.String("string"),
TableName: pulumi.String("string"),
ServiceName: pulumi.String("string"),
IntegrationId: pulumi.String("string"),
SchemaSql: pulumi.String("string"),
KafkaKeyFields: pulumi.StringArray{
pulumi.String("string"),
},
KafkaTopic: pulumi.String("string"),
KafkaValueFormat: pulumi.String("string"),
LikeOptions: pulumi.String("string"),
KafkaStartupMode: pulumi.String("string"),
KafkaKeyFormat: pulumi.String("string"),
KafkaConnectorType: pulumi.String("string"),
JdbcTable: pulumi.String("string"),
})
var flinkJobTableResource = new FlinkJobTable("flinkJobTableResource", FlinkJobTableArgs.builder()
.project("string")
.tableName("string")
.serviceName("string")
.integrationId("string")
.schemaSql("string")
.kafkaKeyFields("string")
.kafkaTopic("string")
.kafkaValueFormat("string")
.likeOptions("string")
.kafkaStartupMode("string")
.kafkaKeyFormat("string")
.kafkaConnectorType("string")
.jdbcTable("string")
.build());
flink_job_table_resource = aiven.FlinkJobTable("flinkJobTableResource",
project="string",
table_name="string",
service_name="string",
integration_id="string",
schema_sql="string",
kafka_key_fields=["string"],
kafka_topic="string",
kafka_value_format="string",
like_options="string",
kafka_startup_mode="string",
kafka_key_format="string",
kafka_connector_type="string",
jdbc_table="string")
const flinkJobTableResource = new aiven.FlinkJobTable("flinkJobTableResource", {
project: "string",
tableName: "string",
serviceName: "string",
integrationId: "string",
schemaSql: "string",
kafkaKeyFields: ["string"],
kafkaTopic: "string",
kafkaValueFormat: "string",
likeOptions: "string",
kafkaStartupMode: "string",
kafkaKeyFormat: "string",
kafkaConnectorType: "string",
jdbcTable: "string",
});
type: aiven:FlinkJobTable
properties:
integrationId: string
jdbcTable: string
kafkaConnectorType: string
kafkaKeyFields:
- string
kafkaKeyFormat: string
kafkaStartupMode: string
kafkaTopic: string
kafkaValueFormat: string
likeOptions: string
project: string
schemaSql: string
serviceName: string
tableName: string
FlinkJobTable Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FlinkJobTable resource accepts the following input properties:
- Integration
Id string - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Schema
Sql string - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Table
Name string - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- Jdbc
Table string - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Connector stringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Key List<string>Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Key stringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Startup stringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Topic string - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Value stringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Like
Options string - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- Integration
Id string - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Schema
Sql string - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Table
Name string - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- Jdbc
Table string - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Connector stringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Key []stringFields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Key stringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Startup stringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Topic string - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Value stringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Like
Options string - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- integration
Id String - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema
Sql String - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table
Name String - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- jdbc
Table String - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Connector StringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka
Key List<String>Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Key StringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka
Startup StringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka
Topic String - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Value StringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like
Options String - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- integration
Id string - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema
Sql string - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service
Name string - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table
Name string - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- jdbc
Table string - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Connector stringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka
Key string[]Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Key stringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka
Startup stringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka
Topic string - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Value stringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like
Options string - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- integration_
id str - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - project str
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema_
sql str - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service_
name str - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table_
name str - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- jdbc_
table str - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka_
connector_ strtype - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka_
key_ Sequence[str]fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka_
key_ strformat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka_
startup_ strmode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka_
topic str - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka_
value_ strformat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like_
options str - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- integration
Id String - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema
Sql String - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table
Name String - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- jdbc
Table String - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Connector StringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka
Key List<String>Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Key StringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka
Startup StringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka
Topic String - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Value StringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like
Options String - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the FlinkJobTable resource produces the following output properties:
Look up Existing FlinkJobTable Resource
Get an existing FlinkJobTable resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FlinkJobTableState, opts?: CustomResourceOptions): FlinkJobTable@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
integration_id: Optional[str] = None,
jdbc_table: Optional[str] = None,
kafka_connector_type: Optional[str] = None,
kafka_key_fields: Optional[Sequence[str]] = None,
kafka_key_format: Optional[str] = None,
kafka_startup_mode: Optional[str] = None,
kafka_topic: Optional[str] = None,
kafka_value_format: Optional[str] = None,
like_options: Optional[str] = None,
project: Optional[str] = None,
schema_sql: Optional[str] = None,
service_name: Optional[str] = None,
table_id: Optional[str] = None,
table_name: Optional[str] = None) -> FlinkJobTablefunc GetFlinkJobTable(ctx *Context, name string, id IDInput, state *FlinkJobTableState, opts ...ResourceOption) (*FlinkJobTable, error)public static FlinkJobTable Get(string name, Input<string> id, FlinkJobTableState? state, CustomResourceOptions? opts = null)public static FlinkJobTable get(String name, Output<String> id, FlinkJobTableState state, CustomResourceOptions options)resources: _: type: aiven:FlinkJobTable get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Integration
Id string - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - Jdbc
Table string - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Connector stringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Key List<string>Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Key stringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Startup stringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Topic string - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Value stringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Like
Options string - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Schema
Sql string - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Table
Id string - The Table ID of the flink table in the flink service.
- Table
Name string - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- Integration
Id string - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - Jdbc
Table string - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Connector stringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Key []stringFields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Key stringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Startup stringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - Kafka
Topic string - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- Kafka
Value stringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - Like
Options string - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Schema
Sql string - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Table
Id string - The Table ID of the flink table in the flink service.
- Table
Name string - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- integration
Id String - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - jdbc
Table String - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Connector StringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka
Key List<String>Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Key StringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka
Startup StringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka
Topic String - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Value StringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like
Options String - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema
Sql String - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table
Id String - The Table ID of the flink table in the flink service.
- table
Name String - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- integration
Id string - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - jdbc
Table string - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Connector stringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka
Key string[]Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Key stringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka
Startup stringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka
Topic string - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Value stringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like
Options string - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema
Sql string - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service
Name string - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table
Id string - The Table ID of the flink table in the flink service.
- table
Name string - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- integration_
id str - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - jdbc_
table str - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka_
connector_ strtype - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka_
key_ Sequence[str]fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka_
key_ strformat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka_
startup_ strmode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka_
topic str - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka_
value_ strformat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like_
options str - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- project str
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema_
sql str - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service_
name str - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table_
id str - The Table ID of the flink table in the flink service.
- table_
name str - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
- integration
Id String - The id of the service integration that is used with this table. It must have the service integration type
flink. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource. - jdbc
Table String - Name of the jdbc table that is to be connected to this table. Valid if the service integration id refers to a mysql or postgres service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Connector StringType - When used as a source, upsert Kafka connectors update values that use an existing key and delete values that are null. For sinks, the connector correspondingly writes update or delete messages in a compacted topic. If no matching key is found, the values are added as new entries. For more information, see the Apache Flink documentation The possible values are
kafkaandupsert-kafka. This property cannot be changed, doing so forces recreation of the resource. - kafka
Key List<String>Fields - Defines an explicit list of physical columns from the table schema that configure the data type for the key format. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Key StringFormat - Kafka Key Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - kafka
Startup StringMode - Startup mode The possible values are
earliest-offset,latest-offset,group-offsetsandtimestamp. This property cannot be changed, doing so forces recreation of the resource. - kafka
Topic String - Name of the kafka topic that is to be connected to this table. Valid if the service integration id refers to a kafka service. This property cannot be changed, doing so forces recreation of the resource.
- kafka
Value StringFormat - Kafka Value Format The possible values are
avro,avro-confluent,debezium-avro-confluent,debezium-jsonandjson. This property cannot be changed, doing so forces recreation of the resource. - like
Options String - LIKE statement for table creation. This property cannot be changed, doing so forces recreation of the resource.
- project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- schema
Sql String - The SQL statement to create the table. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- table
Id String - The Table ID of the flink table in the flink service.
- table
Name String - Specifies the name of the table. This property cannot be changed, doing so forces recreation of the resource.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.
published on Monday, Mar 9, 2026 by Pulumi