Trivikram Kamat

Results 146 comments of Trivikram Kamat

I got the following message in AWS Console while trying to create Cognito Identity Pool while following [these steps](https://serverless-stack.com/chapters/create-a-cognito-identity-pool.html) ![Screen Shot 2019-07-28 at 6 48 13 PM](https://user-images.githubusercontent.com/16024985/62016686-658d8780-b168-11e9-8992-f42e4afd85e3.png) Links: * [AWS...

Any update on this request? The support for Node.js v10 was added in [May 2019](https://aws.amazon.com/about-aws/whats-new/2019/05/aws_lambda_adds_support_for_node_js_v10/).

Related: https://github.com/aws/aws-sdk-js-v3/issues/1164#issuecomment-806157547

This happens because [encodeURIComponent](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent#description) doesn't escape `*`. Currently the additional encoding is only done in signer, and some additional characters will be required to be escaped https://github.com/aws/aws-sdk-js-v3/blob/906e4b04d18ba26cbe16d9122b0014ea539233ac/packages/signature-v4/src/SignatureV4.ts#L280-L283 The solution would...

We have a module for Multipart upload called [@aws-sdk/lib-storage](https://www.npmjs.com/package/@aws-sdk/lib-storage). Does it satisfy your use case?

If header `x-amz-decoded-content-length` is defined, the header `content-length` should be deleted as per `aws-chunked` encoding specification. We do it in flexibleChecksumsMiddleware at https://github.com/aws/aws-sdk-js-v3/blob/main/packages/middleware-flexible-checksums/src/flexibleChecksumsMiddleware.ts#L56,L60

Next steps from Office Hours meeting: * @jasonwuamzn to attempt removing `content-length` and check the behavior. * @jasonwuamzn to attempt creating a minimal repro issue with https://github.com/aws-samples/aws-sdk-js-tests @ajredniwja will look...

This happens as `data.Body` is now of type `Readable | ReadableStream | Blob` https://github.com/aws/aws-sdk-js-v3/blob/25cb359e69966c549eb505956c2aeee809819245/clients/client-s3/models/models_0.ts#L6560 For your specific example, you can write a streamToString function to convert ReadableStream to a string....

> There is no documentation for clients and the GetObjectCommand is not documented in the user guide or sample code. The project Readme file implies I could expect the same...