pyflink.table.table_descriptor.TableDescriptor.Builder.option#
- Builder.option(key: Union[str, ConfigOption], value) Builder#
Sets the given option on the table.
Option keys must be fully specified. When defining options for a Format, use format(FormatDescriptor) instead.
Example:
>>> TableDescriptor.for_connector("kafka") ... .option("scan.startup.mode", "latest-offset") ... .build()