StorageQueueFunctionOptions interface

Extends

Properties

handler
trigger

Inherited Properties

connection

An app setting (or environment variable) with the storage connection string to be used by this queue input or output

extraInputs

Configuration for an optional set of secondary inputs During invocation, get these values with context.extraInputs.get()

extraOutputs

Configuration for an optional set of secondary outputs During invocation, set these values with context.extraOutputs.set()

queueName

The queue name

return

Configuration for the optional primary output of the function This is the main output that you should set as the return value of the function handler during invocation

Property Details

handler

handler: StorageQueueHandler

Property Value

trigger

trigger?: StorageQueueTrigger

Property Value

Inherited Property Details

connection

An app setting (or environment variable) with the storage connection string to be used by this queue input or output

connection: string

Property Value

string

Inherited From StorageQueueTriggerOptions.connection

extraInputs

Configuration for an optional set of secondary inputs During invocation, get these values with context.extraInputs.get()

extraInputs?: FunctionInput[]

Property Value

Inherited From Partial.extraInputs

extraOutputs

Configuration for an optional set of secondary outputs During invocation, set these values with context.extraOutputs.set()

extraOutputs?: FunctionOutput[]

Property Value

Inherited From Partial.extraOutputs

queueName

The queue name

queueName: string

Property Value

string

Inherited From StorageQueueTriggerOptions.queueName

return

Configuration for the optional primary output of the function This is the main output that you should set as the return value of the function handler during invocation

return?: FunctionOutput

Property Value

Inherited From Partial.return