@Retention(value=RUNTIME) @Target(value={PARAMETER,METHOD}) public @interface ServiceBusTopicOutput
Place this on a parameter whose value would be written to a service bus topic. The parameter type should be OutputBinding<T>, where T could be one of:
| Modifier and Type | Required Element and Description |
|---|---|
String |
connection
Defines the app setting name that contains the Service Bus connection string.
|
String |
name
The variable name used in function.json.
|
String |
subscriptionName
Defines the subscription name of the Service Bus topic to which to write.
|
String |
topicName
Defines the name of the Service Bus topic to which to write.
|
| Modifier and Type | Optional Element and Description |
|---|---|
AccessRights |
access
Defines the permission of the Service Bus topic to which to write.
|
String |
dataType
Defines how Functions runtime should treat the parameter value.
|
public abstract String name
public abstract String topicName
public abstract String subscriptionName
public abstract String connection
public abstract String dataType
Defines how Functions runtime should treat the parameter value. Possible values are:
public abstract AccessRights access
Copyright © 2022. All rights reserved.