diff --git a/libraries/src/AWS.Lambda.Powertools.Idempotency/IdempotentAttribute.cs b/libraries/src/AWS.Lambda.Powertools.Idempotency/IdempotentAttribute.cs
index 0204ee1af..fcd19f989 100644
--- a/libraries/src/AWS.Lambda.Powertools.Idempotency/IdempotentAttribute.cs
+++ b/libraries/src/AWS.Lambda.Powertools.Idempotency/IdempotentAttribute.cs
@@ -63,6 +63,11 @@ namespace AWS.Lambda.Powertools.Idempotency;
[Injection(typeof(UniversalWrapperAspect), Inherited = true)]
public class IdempotentAttribute : UniversalWrapperAttribute
{
+ ///
+ /// Custom prefix for idempotency key: key_prefix#hash
+ ///
+ public string KeyPrefix { get; set; }
+
///
/// Wraps as a synchronous operation, simply throws IdempotencyConfigurationException
///
@@ -90,7 +95,7 @@ protected internal sealed override T WrapSync(Func