Is there a way to configure different expiration time for different idempotency records? In the docs, it is possible to use @Idempotent
on individual methods which stores the method response as idempotent record. If I want to use this annotation on 3 methods in my lambda, is there any way to have different expiration config for each of these methods? Or is this a global config?
And if possible, how to achieve it?