CARVIEW |
Select Language
HTTP/1.1 302 Moved Temporarily
Content-Type: text/html; charset=iso-8859-1
Content-Length: 312
Connection: keep-alive
Date: Thu, 24 Jul 2025 16:19:24 GMT
Server: Server
Cache-Control: max-age=600
X-Frame-Options: SAMEORIGIN
Strict-Transport-Security: max-age=47304000; includeSubDomains
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Content-Security-Policy: upgrade-insecure-requests; script-src 'self' 'unsafe-inline' *.awsstatic.com *.cdn.uis.awsstatic.com *.cdn.console.awsstatic.com d2c.aws.amazon.com a0.awsstatic.com *.feedback.console.aws.dev insights.docs.aws.com wss://insights.docs.aws.com/prod; object-src 'none';
Location: https://sdk.amazonaws.com/kotlin/api/latest/lambda/aws.sdk.kotlin.services.lambda/-lambda-client/get-function-configuration.html
X-Cache: Miss from cloudfront
Via: 1.1 5f77629b958f4c8136b55116def20b30.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: BOM78-P5
X-Amz-Cf-Id: QlJPMiUq5g4oKOASJltpEd9gI1yJXJdtfpp3e0h6T61wx6PhUIwbtA==
HTTP/1.1 200 OK
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Last-Modified: Wed, 23 Jul 2025 22:39:34 GMT
x-amz-server-side-encryption: AES256
Server: AmazonS3
Via: 1.1 9db58be50dbaab99adeb6f9e43f285e6.cloudfront.net (CloudFront), 1.1 dd6c1a278efb828ef1b392c94dad2808.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: TLV50-C1
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
Content-Security-Policy: upgrade-insecure-requests; script-src 'self' 'unsafe-inline' *.awsstatic.com *.cdn.uis.awsstatic.com *.cdn.console.awsstatic.com docs.aws.amazon.com https://*.shortbread.aws.dev; img-src 'self' https://amazonwebservices.d2.sc.omtrdc.net https://aws.demdex.net https://dpm.demdex.net https://cm.everesttech.net https://a0.awsstatic.com/; frame-src 'self' https://aws.demdex.net https://dpm.demdex.net; connect-src 'self' https://amazonwebservices.d2.sc.omtrdc.net https://aws.demdex.net https://dpm.demdex.net https://cm.everesttech.net https://a0.awsstatic.com/ https://d2c.aws.amazon.com https://vs.aws.amazon.com https://*.shortbread.aws.dev; object-src 'none'; frame-ancestors 'self'; base-uri 'none'
Strict-Transport-Security: max-age=31536000
Content-Encoding: gzip
Date: Thu, 24 Jul 2025 16:19:26 GMT
Cache-Control: no-store, no-cache, must-revalidate
ETag: W/"5c362c04f5116b2d311c7863e388a174"
Vary: Accept-Encoding
X-Cache: RefreshHit from cloudfront
X-Amz-Cf-Pop: BOM78-P1
X-Amz-Cf-Id: xzhHRco13m_cWL3FErj9yKx3NC2cxM5_k0x8f-6ZGB6E2mR_bbAGww==
getFunctionConfiguration
AWS SDK for Kotlin
get
1.5.2
Platform filter
getFunctionConfiguration
abstract suspend fun getFunctionConfiguration(input: GetFunctionConfigurationRequest): GetFunctionConfigurationResponse
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
fun main() {
//sampleStart
// 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"
}
//sampleEnd
}