-
Notifications
You must be signed in to change notification settings - Fork 406
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: expose jmespath powertools functions (#736)
- Loading branch information
1 parent
dec3c88
commit af36fb5
Showing
10 changed files
with
229 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -446,7 +446,7 @@ def set_package_logger( | |
------- | ||
**Enables debug logging for AWS Lambda Powertools package** | ||
>>> from aws_lambda_powertools.logging.logger import set_package_logger | ||
>>> aws_lambda_powertools.logging.logger import set_package_logger | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
heitorlessa
via email
Author
Contributor
|
||
>>> set_package_logger() | ||
Parameters | ||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
API_GATEWAY_REST = "powertools_json(body)" | ||
API_GATEWAY_HTTP = API_GATEWAY_REST | ||
SQS = "Records[*].powertools_json(body)" | ||
SNS = "Records[0].Sns.Message | powertools_json(@)" | ||
EVENTBRIDGE = "detail" | ||
CLOUDWATCH_EVENTS_SCHEDULED = EVENTBRIDGE | ||
KINESIS_DATA_STREAM = "Records[*].kinesis.powertools_json(powertools_base64(data))" | ||
CLOUDWATCH_LOGS = "awslogs.powertools_base64_gzip(data) | powertools_json(@).logEvents[*]" |
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
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
Oops, something went wrong.
@heitorlessa missing a
from
here?