forked from aws-powertools/powertools-lambda-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding complex examples + using ext ngjson
- Loading branch information
1 parent
e0f4a3a
commit fbed1a1
Showing
6 changed files
with
159 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
examples/data_masking/src/choosing_payload_complex_search.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "Lessa", | ||
"operation": "non sensitive", | ||
"card_number": "1000 4444 333 2222", | ||
"address": [ | ||
{ | ||
"postcode": 81847, | ||
"street": "38986 Joanne Stravenue" | ||
}, | ||
{ | ||
"postcode": 91034, | ||
"street": "14987 Avenue 1" | ||
}, | ||
{ | ||
"postcode": 78495, | ||
"street": "34452 Avenue 10" | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
examples/data_masking/src/choosing_payload_complex_search_output.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "Lessa", | ||
"operation": "non sensitive", | ||
"card_number": "1000 4444 333 2222", | ||
"address": [ | ||
{ | ||
"postcode": 81847, | ||
"street": "*****" | ||
}, | ||
{ | ||
"postcode": 91034, | ||
"street": "*****" | ||
}, | ||
{ | ||
"postcode": 78495, | ||
"street": "34452 Avenue 10" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters