deleteEventSourceMapping

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
}