OAUTH support for logstash kafka output for azure eventhub kafka endpoint

Hi All,

I'm trying to push events to Azure Eventhub kafka endpoint. I'm able to successfully connect and publish to the topic when I use SASL_SSL.
But I want to use OAUTH. As per the microsoft documentation [https://learn.microsoft.com/en-us/azure/event-hubs/azure-event-hubs-apache-kafka-overview] we can use oauth like this:

bootstrap.servers=NAMESPACENAME.servicebus.windows.net:9093
security.protocol=SASL_SSL
sasl.mechanism=OAUTHBEARER
sasl.jaas.config=org.apache.kafka.common.security.oauthbearer.OAuthBearerLoginModule required;
sasl.login.callback.handler.class=CustomAuthenticateCallbackHandler

Is OAUTHBEARER sasl mechanism supported by logstash kafka output?

Thank you
Paras Paul