Share via


EventHubV2OutputDataSource Constructors

Definition

Overloads

EventHubV2OutputDataSource()

Initializes a new instance of the EventHubV2OutputDataSource class.

EventHubV2OutputDataSource(String, String, String, String, String, String, IList<String>)

Initializes a new instance of the EventHubV2OutputDataSource class.

EventHubV2OutputDataSource()

Initializes a new instance of the EventHubV2OutputDataSource class.

public EventHubV2OutputDataSource ();
Public Sub New ()

Applies to

EventHubV2OutputDataSource(String, String, String, String, String, String, IList<String>)

Initializes a new instance of the EventHubV2OutputDataSource class.

public EventHubV2OutputDataSource (string serviceBusNamespace = default, string sharedAccessPolicyName = default, string sharedAccessPolicyKey = default, string authenticationMode = default, string eventHubName = default, string partitionKey = default, System.Collections.Generic.IList<string> propertyColumns = default);
new Microsoft.Azure.Management.StreamAnalytics.Models.EventHubV2OutputDataSource : string * string * string * string * string * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.StreamAnalytics.Models.EventHubV2OutputDataSource
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, Optional partitionKey As String = Nothing, Optional propertyColumns As IList(Of 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.

partitionKey
String

The key/column that is used to determine to which partition to send event data.

propertyColumns
IList<String>

The properties associated with this Event Hub output.

Applies to