Share via


EventHubDataSourceProperties Constructors

Definition

Overloads

EventHubDataSourceProperties()

Initializes a new instance of the EventHubDataSourceProperties class.

EventHubDataSourceProperties(String, String, String, String, String)

Initializes a new instance of the EventHubDataSourceProperties class.

EventHubDataSourceProperties()

Initializes a new instance of the EventHubDataSourceProperties class.

public EventHubDataSourceProperties ();
Public Sub New ()

Applies to

EventHubDataSourceProperties(String, String, String, String, String)

Initializes a new instance of the EventHubDataSourceProperties class.

public EventHubDataSourceProperties (string serviceBusNamespace = default, string sharedAccessPolicyName = default, string sharedAccessPolicyKey = default, string authenticationMode = default, string eventHubName = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.EventHubDataSourceProperties : string * string * string * string * string -> Microsoft.Azure.Management.StreamAnalytics.Models.EventHubDataSourceProperties
Public Sub New (Optional serviceBusNamespace As String = Nothing, Optional sharedAccessPolicyName As String = Nothing, Optional sharedAccessPolicyKey As String = Nothing, Optional authenticationMode As String = Nothing, Optional eventHubName As String = Nothing)

Parameters

serviceBusNamespace
String

The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.

sharedAccessPolicyName
String

The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.

sharedAccessPolicyKey
String

The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.

authenticationMode
String

Authentication Mode. Possible values include: 'Msi', 'UserToken', 'ConnectionString'

eventHubName
String

The name of the Event Hub. Required on PUT (CreateOrReplace) requests.

Applies to