Package version:

Interface EventHubV2StreamInputDataSource

Describes an Event Hub input data source that contains stream data.

interface EventHubV2StreamInputDataSource {
    authenticationMode?: string;
    consumerGroupName?: string;
    eventHubName?: string;
    partitionCount?: number;
    prefetchCount?: number;
    serviceBusNamespace?: string;
    sharedAccessPolicyKey?: string;
    sharedAccessPolicyName?: string;
    type: "Microsoft.EventHub/EventHub";
}

Hierarchy (view full)

Properties

authenticationMode?: string

Authentication Mode.

consumerGroupName?: string

The name of an Event Hub Consumer Group that should be used to read events from the Event Hub. Specifying distinct consumer group names for multiple inputs allows each of those inputs to receive the same events from the Event Hub. If not specified, the input uses the Event Hub’s default consumer group.

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.

prefetchCount?: number

The number of messages that the message receiver can simultaneously request.

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.

type: "Microsoft.EventHub/EventHub"

Polymorphic discriminator, which specifies the different types this object can be

Generated using TypeDoc