pyflink.table.table_descriptor.TableDescriptor.Builder.option#
- Builder.option(key: Union[str, pyflink.common.config_options.ConfigOption], value) pyflink.table.table_descriptor.TableDescriptor.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()