Package version:

Interface AzureFunctionOutputDataSource

Defines the metadata of AzureFunctionOutputDataSource

interface AzureFunctionOutputDataSource {
    apiKey?: string;
    functionAppName?: string;
    functionName?: string;
    maxBatchCount?: number;
    maxBatchSize?: number;
    type: "Microsoft.AzureFunction";
}

Hierarchy (view full)

Properties

apiKey?: string

If you want to use an Azure Function from another subscription, you can do so by providing the key to access your function.

functionAppName?: string

The name of your Azure Functions app.

functionName?: string

The name of the function in your Azure Functions app.

maxBatchCount?: number

A property that lets you specify the maximum number of events in each batch that's sent to Azure Functions. The default value is 100.

maxBatchSize?: number

A property that lets you set the maximum size for each output batch that's sent to your Azure function. The input unit is in bytes. By default, this value is 262,144 bytes (256 KB).

type: "Microsoft.AzureFunction"

Polymorphic discriminator, which specifies the different types this object can be

Generated using TypeDoc