EventHubOutputDataSource Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
EventHubOutputDataSource() |
Initializes a new instance of the EventHubOutputDataSource class. |
EventHubOutputDataSource(String, String, String, String, String, String, IList<String>) |
Initializes a new instance of the EventHubOutputDataSource class. |
EventHubOutputDataSource()
Initializes a new instance of the EventHubOutputDataSource class.
public EventHubOutputDataSource ();
Public Sub New ()
Applies to
EventHubOutputDataSource(String, String, String, String, String, String, IList<String>)
Initializes a new instance of the EventHubOutputDataSource class.
public EventHubOutputDataSource (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.EventHubOutputDataSource : string * string * string * string * string * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.StreamAnalytics.Models.EventHubOutputDataSource
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.
Applies to
Azure SDK for .NET