getFunctionConcurrency
inline suspend fun LambdaClient.getFunctionConcurrency(crossinline block: GetFunctionConcurrencyRequest.Builder.() -> Unit): GetFunctionConcurrencyResponse
Returns details about the reserved concurrency configuration for a function. To set a concurrency limit for a function, use PutFunctionConcurrency.
Samples
fun main() {
//sampleStart
// The following example returns the reserved concurrency setting for a function named my function.
val resp = lambdaClient.getFunctionConcurrency {
functionName = "my-function"
}
//sampleEnd
}