powertools-lambda-typescript
powertools-lambda-typescript copied to clipboard
Powertools is a developer toolkit to implement Serverless best practices and increase developer velocity.
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.26.5 to 3.26.6. Changelog Sourced from github/codeql-action's changelog. CodeQL Action Changelog See the releases page for the relevant changes to the CodeQL CLI and language packs. Note...
## Summary ### Changes > Please provide a summary of what's being changed As a last step of the API docs & README overhaul, this PR includes all the README...
### Summary While cleaning up the api docs in one of the issues of #2381 the typedoc complains about resources that are references but not exported. While we can add...
### Summary In the test files we have a lot of accesses that look like `object['property'`. By default, biome throws an error if this kind of access is used and...
### Use case I'd like to be able to create/update a secret parameter's value. ### Solution/User Experience const ssmClient = new SSMClient({ region: "us-west-2" }) const putTokenCommand = new PutParameterCommand({...
### Expected Behavior Successful idempotency write of successful request. ### Current Behavior After a successful write to the DynamoDB table for the idempotency record, once the handler has successfully executed...
### Expected Behavior When using the `makeHandlerIdempotent` middleware with a handler function that has no return value(`undefined`), the middleware should only call the handler once. ### Current Behavior The handler...
## Summary By default, we can not change the log key positions. This PR gives the user the ability to change log key positions. ### Changes - **This is a...
## Summary ### Changes > Please provide a summary of what's being changed This PR modifies the internal implementation of the Tracer patching for the `fetch` request module so that...
### Link to your material https://dev.to/aws-builders/eventbridge-working-around-api-destination-5s-maximum-client-timeout-constraint-using-lambda-powertools-idempotency-1cb3 ### Description This article discusses how to use Idempotency feature to work around EventBridge API Destinations' built-in maximum client execution timeout (5s) and allow...