You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"powertools_json(Body).address")// will retrieve the address field in the body which is a string transformed to json with `powertools_json`
71
-
.WithExpiration(TimeSpan.FromSeconds(10))
72
-
.Build())
73
-
.WithPersistenceStore(
74
-
DynamoDBPersistenceStore.Builder()
75
-
.WithTableName(tableName)
76
-
.WithDynamoDBClient(amazonDynamoDb)
77
-
.Build())
78
-
.Configure();
67
+
68
+
Idempotency.Configure(builder =>
69
+
builder
70
+
.WithOptions(optionsBuilder =>
71
+
optionsBuilder
72
+
.WithEventKeyJmesPath("powertools_json(Body).address")// will retrieve the address field in the body which is a string transformed to json with `powertools_json`
0 commit comments