Uses of Package
software.amazon.lambda.powertools.idempotency
Packages that use software.amazon.lambda.powertools.idempotency
Package
Description
-
Classes in software.amazon.lambda.powertools.idempotency used by software.amazon.lambda.powertools.idempotencyClassDescriptionHolds the configuration for idempotency: The persistence layer to use for persisting the request and response of the function (mandatory). The general configuration for idempotency (optional, see
IdempotencyConfig.Buildermethods to see defaults values.
Use it before the function handler (RequestHandler.handleRequest(Object, Context)) get called.Configuration of the idempotency feature. -
Classes in software.amazon.lambda.powertools.idempotency used by software.amazon.lambda.powertools.idempotency.internalClassDescription@Idempotent is used to signal that the annotated method is idempotent:
Calling this method one or multiple times with the same parameter will always return the same result.
This annotation can be placed on theRequestHandler.handleRequest(Object, Context)method of a Lambda function: -