George Fu
George Fu
note for maintainers: - [ ] error thrown in readable should be catch-able in the async send method - [ ] too-long Content-Length: request should be sent to service to...
@laverdet did you try the `@aws-sdk/lib-storage` `Upload` class as an alternative to `PutObject`? It doesn't need or want a content length value for streams, since it will buffer and count...
This should be fixed as of https://github.com/aws/aws-sdk-js-v3/releases/tag/v3.735.0. yarn: 4.6.0 with `@aws-sdk/[email protected]`: ``` yarn explain peer-requirements p51e63 → ✓ @aws-sdk/client-ssm@npm:3.609.0 provides @aws-sdk/client-sts@npm:3.609.0 to @aws-sdk/client-sso-oidc@npm:3.609.0 [724a8] p70f73 → ✓ @aws-sdk/client-ssm@npm:3.609.0 doesn't provide...
For a current workaround, if you bundle with a web target, does that work?
`useGlobalEndpoint` does not mean the SDK will make cross region requests. An instance of an SDK Client is tied to one region unless the service itself is regionless. `useGlobalEndpoint=true` simply...
A fix for credential assume-role chaining was released in https://github.com/aws/aws-sdk-js-v3/releases/tag/v3.651.1. The option of having a final `credential_source` with no `role_arn` was preserved.
@mifi does it succeed if you use the nearest second as the timestamp? ```ts ValidUntil: new Date((Date.now() / 1000 | 0) * 1000 + (1000 * 60 * 60)) ```...
When I run this I only get one Command in the bundle ```ts // index.ts export { DynamoDBClient, GetItemCommand } from "@aws-sdk/client-dynamodb"; ``` ```mk npx esbuild --bundle index.ts --outfile=dist/bundle.js --format=esm...
I externalized some packages because they are part of the AWS SDK default credential provider chain that may be unnecessary in Lambda. That part is optional and shouldn't affect the...
This is not a bug, our dependency wants to use a specific version of util-utf8 and we want to use another version. Your application bundle will function correctly whether you...