deleteFunctionEventInvokeConfig
inline suspend fun LambdaClient.deleteFunctionEventInvokeConfig(crossinline block: DeleteFunctionEventInvokeConfigRequest.Builder.() -> Unit): DeleteFunctionEventInvokeConfigResponse
Deletes the configuration for asynchronous invocation for a function, version, or alias.
To configure options for asynchronous invocation, use PutFunctionEventInvokeConfig.
Samples
fun main() {
//sampleStart
// 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"
}
//sampleEnd
}