CARVIEW |
Select Language
HTTP/1.1 302 Moved Temporarily
Content-Type: text/html; charset=iso-8859-1
Content-Length: 298
Connection: keep-alive
Date: Fri, 25 Jul 2025 21:13:11 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.html
X-Cache: Miss from cloudfront
Via: 1.1 345f496d00ae1b7643706de6cdfc0808.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: BOM78-P5
X-Amz-Cf-Id: 7Ndw3XVsKIY4IZeIj2ilVMP2GWG7wOJ8dbKxh0Iq70-o729qY_bpPg==
HTTP/1.1 200 OK
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Last-Modified: Thu, 24 Jul 2025 22:38:51 GMT
x-amz-server-side-encryption: AES256
Server: AmazonS3
Via: 1.1 f211f91e8d5cedb9f00541e06f435da2.cloudfront.net (CloudFront), 1.1 8f1942595ba631b82c2ab2e25ec56dc6.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: Fri, 25 Jul 2025 21:13:14 GMT
Cache-Control: no-store, no-cache, must-revalidate
ETag: W/"2b69b1d9a74020cde53f1f6a8f81987f"
Vary: Accept-Encoding
X-Cache: RefreshHit from cloudfront
X-Amz-Cf-Pop: BOM78-P1
X-Amz-Cf-Id: WVdeVbWAQL59LdlMY5RpjKWtCxhNc963oT8ghNQmrVieVxjKq8eQJA==
getFunction
AWS SDK for Kotlin
get
1.5.3
Platform filter
getFunction
Returns information about the function or function version, with a link to download the deployment package that's valid for 10 minutes. If you specify a function version, only details that are specific to that version are returned.
Samples
fun main() {
//sampleStart
// The following example returns code and configuration details for version 1 of a function named my
// function.
val resp = lambdaClient.getFunction {
functionName = "my-function"
qualifier = "1"
}
//sampleEnd
}