George Fu

Results 216 comments of George Fu

I was able to execute this code in a browser as of the latest AWS SDK version: ```ts import { S3Client } from "@aws-sdk/client-s3"; import { Upload } from "@aws-sdk/lib-storage";...

To restore functionality similar to pre-v3.729.0, you can turn off default checksums as outlined in https://github.com/aws/aws-sdk-js-v3/issues/6810, configurable on `S3Client` instances. Enabling the new checksum header on the bucket(s) is a...

Try setting [credentials=include](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch#including_credentials) in fetch

The list of paginators and waiters is on the package index page: https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-organizations/. I will see about making links from the Client landing page.

The AWS SDK for JavaScript team has added a deprecation message to v3.729.0 through v3.734.0 of `@aws-sdk/client-s3` calling out this issue.

This SDK is written for Node.js and offers browser compatibility via bundler metadata in package.json for file replacement. I believe the only way to remove Node.js global types is to...

- `keepAlive=true` is supposed to help with higher throughput. Other than matching the JS v2 SDK default, do you need to set it to false? - you can also call...

> Though would there be risk of multiple lambda invocations in a single context destroying that socket while another invocation is using it? Or would each lambda invoc have its...

Are you able to use a version of the ReadableStream polyfill that implements `ReadableStream.prototype.tee()`?

Thank you for your contribution. After evaluating alternative options this is no longer needed since the various credential provider packages now used a separate STS client and have declared a...