Databricks SDK for JavaScript
    Preparing search index...

    Interface StreamConnectionConfig

    Specifies how to connect and authenticate to the stream platform.

    interface StreamConnectionConfig {
        connectionConfig?:
            | { $case: "ucConnectionName"; ucConnectionName: string }
            | { $case: "directMtlsConfig"; directMtlsConfig: DirectMtlsConfig };
    }
    Index

    Properties

    connectionConfig?:
        | { $case: "ucConnectionName"; ucConnectionName: string }
        | { $case: "directMtlsConfig"; directMtlsConfig: DirectMtlsConfig }

    Type Declaration

    • { $case: "ucConnectionName"; ucConnectionName: string }
      • $case: "ucConnectionName"
      • ucConnectionName: string

        Name of an existing UC Connection for stream platform access. Must be the correct type for the streaming platform (e.g. a Kafka Connection for a Kafka Stream).

    • { $case: "directMtlsConfig"; directMtlsConfig: DirectMtlsConfig }
      • $case: "directMtlsConfig"
      • directMtlsConfig: DirectMtlsConfig

        Direct mTLS configuration for stream platform access. This is only used in the short term until UC Kafka Connections support mTLS . Once UC Kafka Connections support mTLS, this will be deprecated.