George Fu

Results 216 comments of George Fu

Information for SDK maintainers: The deserializerMiddleware is the last middleware in most stacks, including the default stack of the Lambda client. To confirm, run the following code to make the...

What about https://www.npmjs.com/package/typeorm-dynamodb?

for reference, the AWS CLI order: https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-authentication.html#cli-chap-authentication-precedence

- [ ] allow setting a default region in the provider interface, i.e. not only via AWS_DEFAULT_REGION.

That is normal. The request reads the stream but cannot rewind it if it fails.

You can buffer the stream or ```ts let attempts = 3; let stream = ... ; while (--attempts) { try { await s3.putObject({ Body: stream }); break; } catch (e)...

#7048 is discussing too many separate issues. Create a new issue for your case. The separate issues discussed there and here are: #### chunk size "Only the last chunk is...

Edit: I posted this without the latest comment from @nabeards having loaded, a workaround was found. ---- This is because the `@aws-crypto/*` packages use a range of `@aws-sdk/types`. Please work...

there may be a workaround involving providing a custom implementation to `client.config.base64Encoder` that converts strings to Uint8Array before calling the default base64Encoder.

we updated the default base64 encoder to accept strings and not just byteArrays. Is this still an issue in the latest SDK version?