Package version:

Describes one input parameter of a function.

interface FunctionInput {
    dataType?: string;
    isConfigurationParameter?: boolean;
}

Properties

dataType?: string

The (Azure Stream Analytics supported) data type of the function input parameter. A list of valid Azure Stream Analytics data types are described at https://msdn.microsoft.com/en-us/library/azure/dn835065.aspx

isConfigurationParameter?: boolean

A flag indicating if the parameter is a configuration parameter. True if this input parameter is expected to be a constant. Default is false.

Generated using TypeDoc