CustomBinding Interface

public interface CustomBinding

CustomBinding(direction = "in", name = "inputParameterName", type = "customBindingTrigger") String customTriggerInput final ExecutionContext context ) { context.getLogger().info(customTriggerInput); }

Method Summary

Modifier and Type Method and Description
String direction()

The variable name used in function.json to specify the direction of the binding: in or out

String name()

The variable name used in function.json.

String type()

The variable name used in function.json to specify the type of the binding.

Method Details

direction

public String direction()

The variable name used in function.json to specify the direction of the binding: in or out

Returns:

The direction of the biding.

name

public String name()

The variable name used in function.json.

Returns:

The variable name used in function.json.

type

public String type()

The variable name used in function.json to specify the type of the binding.

Returns:

The type of the binding.

Applies to