export declare const ConnectorKafkaClusterClientAuthenticationType: { readonly None: "NONE"; readonly Iam: "IAM"; }; /** * The type of client authentication used to connect to the Kafka cluster. Value NONE means that no client authentication is used. */ export type ConnectorKafkaClusterClientAuthenticationType = (typeof ConnectorKafkaClusterClientAuthenticationType)[keyof typeof ConnectorKafkaClusterClientAuthenticationType]; export declare const ConnectorKafkaClusterEncryptionInTransitType: { readonly Plaintext: "PLAINTEXT"; readonly Tls: "TLS"; }; /** * The type of encryption in transit to the Kafka cluster. */ export type ConnectorKafkaClusterEncryptionInTransitType = (typeof ConnectorKafkaClusterEncryptionInTransitType)[keyof typeof ConnectorKafkaClusterEncryptionInTransitType]; export declare const ConnectorNetworkType: { readonly Ipv4: "IPV4"; readonly Dual: "DUAL"; }; /** * The network type of the Connector. */ export type ConnectorNetworkType = (typeof ConnectorNetworkType)[keyof typeof ConnectorNetworkType]; export declare const CustomPluginContentType: { readonly Jar: "JAR"; readonly Zip: "ZIP"; }; /** * The type of the plugin file. */ export type CustomPluginContentType = (typeof CustomPluginContentType)[keyof typeof CustomPluginContentType];