Share via


ActivityOptions interface

Extends

Partial<FunctionOptions>

Properties

extraInputs
extraOutputs
handler

Inherited Properties

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

trigger

Configuration for the primary input to the function, aka the reason it will be triggered This is the only input that is passed as an argument to the function handler during invocation

Property Details

extraInputs

extraInputs?: FunctionInput[]

Property Value

extraOutputs

extraOutputs?: FunctionOutput[]

Property Value

handler

handler: FunctionHandler

Property Value

Inherited Property Details

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

trigger

Configuration for the primary input to the function, aka the reason it will be triggered This is the only input that is passed as an argument to the function handler during invocation

trigger?: FunctionTrigger

Property Value

Inherited From Partial.trigger