CARVIEW |
Select Language
HTTP/1.1 302 Moved Temporarily
Content-Type: text/html; charset=iso-8859-1
Content-Length: 300
Connection: keep-alive
Date: Thu, 24 Jul 2025 14:44:38 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/untag-resource.html
X-Cache: Miss from cloudfront
Via: 1.1 345f496d00ae1b7643706de6cdfc0808.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: BOM78-P5
X-Amz-Cf-Id: VnbkWc0AGSIQDtrav_y7Yr-2F58nRN5S-Wix0LHC-XwVNeNmQCb72w==
HTTP/1.1 200 OK
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Date: Thu, 24 Jul 2025 14:44:41 GMT
Last-Modified: Wed, 23 Jul 2025 22:39:35 GMT
ETag: W/"e3fbd092af14cf1ba7619449ce890e66"
x-amz-server-side-encryption: AES256
Server: AmazonS3
Via: 1.1 cce82fe315e0a4f92564a9f186b83fd8.cloudfront.net (CloudFront), 1.1 5b3ba25f8eac620d91408a458d7b2a9e.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
Cache-Control: no-store, no-cache, must-revalidate
Content-Encoding: gzip
Vary: Accept-Encoding
X-Cache: Miss from cloudfront
X-Amz-Cf-Pop: BOM78-P1
X-Amz-Cf-Id: HejOvH4N3wU6yweu7oh9bGTgZU2V28N8Pvr2agPQx6iMQhC-u7sspA==
untagResource
AWS SDK for Kotlin
untag
1.5.2
Platform filter
untagResource
Removes tags from a function, event source mapping, or code signing configuration.
Samples
fun main() {
//sampleStart
// The following example removes the tag with the key name DEPARTMENT tag from the my function Lambda
// function.
lambdaClient.untagResource {
resource = "arn:aws:lambda:us-west-2:123456789012:function:my-function"
tagKeys = listOf<String>(
"DEPARTMENT"
)
}
//sampleEnd
}