CARVIEW |
Select Language
HTTP/1.1 302 Moved Temporarily
Content-Type: text/html; charset=iso-8859-1
Content-Length: 313
Connection: keep-alive
Date: Wed, 23 Jul 2025 20:04:40 GMT
Location: https://sdk.amazonaws.com/kotlin/api/latest/lambda/aws.sdk.kotlin.services.lambda/-lambda-client/delete-event-source-mapping.html
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';
X-Cache: Miss from cloudfront
Via: 1.1 5131642d4ce8d1e181c48addbfe010e6.cloudfront.net (CloudFront)
X-Amz-Cf-Pop: BOM78-P5
X-Amz-Cf-Id: B_k7TN-Os312-l6iMj4t4ciB-4YbZacskEHsgwOL4kIQFXvdufCVSg==
HTTP/1.1 200 OK
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
Date: Wed, 23 Jul 2025 20:04:42 GMT
Last-Modified: Tue, 22 Jul 2025 22:45:32 GMT
ETag: W/"51a161ad8986d5ab69dc3485e646148c"
x-amz-server-side-encryption: AES256
Server: AmazonS3
Via: 1.1 e8e65c1f633a4f401fa7f38553c7209e.cloudfront.net (CloudFront), 1.1 ce835a3eb4776e2406cfeb7dbc0dc14a.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: RuQfjIlClBW6XQIeJYjupZmOmOpHN8ccjXjSs_QDY6C_FQJg0VaLGg==
deleteEventSourceMapping
AWS SDK for Kotlin
delete
1.5.1
Platform filter
deleteEventSourceMapping
abstract suspend fun deleteEventSourceMapping(input: DeleteEventSourceMappingRequest): DeleteEventSourceMappingResponse
Deletes an event source mapping. You can get the identifier of a mapping from the output of ListEventSourceMappings.
When you delete an event source mapping, it enters a Deleting
state and might not be completely deleted for several seconds.
Samples
fun main() {
//sampleStart
// The following example deletes an event source mapping. To get a mapping s UUID, use
// ListEventSourceMappings.
val resp = lambdaClient.deleteEventSourceMapping {
uuid = "14e0db71-xmpl-4eb5-b481-8945cf9d10c2"
}
//sampleEnd
}