George Fu

Results 216 comments of George Fu

The original reported issue says it's for Node.js. `fromSSO` is not available in the browser https://www.npmjs.com/package/@aws-sdk/credential-providers#fromsso. What are you trying to do with the application? Could you create a minimal...

You should use one client per region in v3. ```ts import { SQS } from "@aws-sdk/client-sqs"; const sqsClients = { "eu-central-1": new SQS({ region: "eu-central-1" }), "eu-west-1": new SQS({ region:...

We want the service to update their model (@yenfryherrerafeliz has an internal ticket open and will relay updates), which generates the types here. Please use a typecast as a workaround...

https://github.com/aws/aws-sdk-js-v3/issues/5728

@siddsriv has created https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service. ```ts import { MetadataService } from "@aws-sdk/ec2-metadata-service"; const metadataService = new MetadataService({ ec2MetadataV1Disabled: true, }); const token = await metadataService.fetchMetadataToken(); const metadata = await metadataService.request("/latest/meta-data/", {});...

https://www.npmjs.com/package/@aws-sdk/ec2-metadata-service has basic instructions on how to make a request, which is most of what the package does. You can then use the general documentation for IMDS https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html and take...

Thank you for the GitHub repository, having one makes investigations much easier. In your webpack config, you are zipping a single file corresponding to the entry point of your app:...

If you don't want to use split bundles, to turn off splitting in webpack, include the LimitChunkCount plugin: ```js const webpack = require('webpack'); ... plugins: [ new webpack.optimize.LimitChunkCountPlugin({ maxChunks: 1,...

Is there anything preventing you from uploading the additional file(s)? The file arrangement is intentional, to reduce initialization time.

The solution mentioned above is to upload all of the output of webpack or configure webpack not to output multiple files.