getFunctionEventInvokeConfig
abstract suspend fun getFunctionEventInvokeConfig(input: GetFunctionEventInvokeConfigRequest): GetFunctionEventInvokeConfigResponse
Retrieves 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 returns the asynchronous invocation configuration for the BLUE alias of a
// function named my function.
val resp = lambdaClient.getFunctionEventInvokeConfig {
functionName = "my-function"
qualifier = "BLUE"
}
//sampleEnd
}