Package version:

Interface EventHubDataSourceProperties

The common properties that are associated with Event Hub data sources.

interface EventHubDataSourceProperties {
    authenticationMode?: string;
    eventHubName?: string;
    partitionCount?: number;
    serviceBusNamespace?: string;
    sharedAccessPolicyKey?: string;
    sharedAccessPolicyName?: string;
}

Hierarchy (view full)

Properties

authenticationMode?: string

Authentication Mode.

eventHubName?: string

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

partitionCount?: number

The partition count of the event hub data source. Range 1 - 256.

serviceBusNamespace?: string

The namespace that is associated with the desired 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.

sharedAccessPolicyName?: string

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

Generated using TypeDoc