getEventSourceMapping
inline suspend fun LambdaClient.getEventSourceMapping(crossinline block: GetEventSourceMappingRequest.Builder.() -> Unit): GetEventSourceMappingResponse
Returns details about an event source mapping. You can get the identifier of a mapping from the output of ListEventSourceMappings.
Samples
fun main() {
//sampleStart
// The following example returns details about an event source mapping. To get a mapping s UUID, use
// ListEventSourceMappings.
val resp = lambdaClient.getEventSourceMapping {
uuid = "14e0db71-xmpl-4eb5-b481-8945cf9d10c2"
}
//sampleEnd
}