getFunctionConfiguration

Returns the version-specific settings of a Lambda function or version. The output includes only options that can vary between versions of a function. To modify these settings, use UpdateFunctionConfiguration.

To get all of a function's details, including function-level settings, use GetFunction.

Samples

// The following example returns and configuration details for version 1 of a function named my
// function.
val resp = lambdaClient.getFunctionConfiguration {
    functionName = "my-function"
    qualifier = "1"
}