Package version:

Interface ServiceBusTopicOutputDataSourceProperties

The properties that are associated with a Service Bus Topic output.

interface ServiceBusTopicOutputDataSourceProperties {
    authenticationMode?: string;
    propertyColumns?: string[];
    serviceBusNamespace?: string;
    sharedAccessPolicyKey?: string;
    sharedAccessPolicyName?: string;
    systemPropertyColumns?: {
        [propertyName: string]: string;
    };
    topicName?: string;
}

Hierarchy (view full)

Properties

authenticationMode?: string

Authentication Mode.

propertyColumns?: string[]

A string array of the names of output columns to be attached to Service Bus messages as custom properties.

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.

systemPropertyColumns?: {
    [propertyName: string]: string;
}

The system properties associated with the Service Bus Topic Output. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.

Type declaration

  • [propertyName: string]: string
topicName?: string

The name of the Service Bus Topic. Required on PUT (CreateOrReplace) requests.

Generated using TypeDoc