Azure Service Bus can be used as a pull-queue with Queues, or to fan-out messages with Topics and Subscriptions. To set up a Subscription with Azure Service Bus, first create a queue/topic in the Azure Portal with a Shared Access Policy including the Send permission.

interface AzureServiceBusDestination {
    connectionString: string;
    type: "AzureServiceBus";
}

Properties

connectionString: string

SharedAccessKey is partially hidden on retrieval for security reasons.

type: "AzureServiceBus"

Generated using TypeDoc