deleteFunctionEventInvokeConfig

Deletes the configuration for asynchronous invocation for a function, version, or alias.

To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.

Samples

// The following example deletes the asynchronous invocation configuration for the GREEN alias of a
// function named my function.
lambdaClient.deleteFunctionEventInvokeConfig {
    functionName = "my-function"
    qualifier = "GREEN"
}