George Fu
George Fu
I don't think we need to implement anything here. A retry token is a concept that we don't require customers to know about, so adding it to an error message...
We should extract the version from package.json and put it in the client.config. Preferably the extraction would also avoid importing the entirety of the package.json object.
The AWS SDK's browser vs Node.js differentiation is done at compile time using package.json metadata for bundlers. The SDK does not attempt to recognize what environment it is in at...
Our recommendation is to use one of the type transforms from `@smithy/types`. https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-smithy-types/ ```ts import { S3 } from "@aws-sdk/client-s3"; import type { AssertiveClient, UncheckedClient } from "@smithy/types"; const s3a...
We can make a request to our documentation writer teammates to add a link to the supplemental developer-written docs. @RanVaknin please open a ticket. Our default types have `| undefined`...
> The bundled SDK is provided as a convenience for developers building simpler functions or using the Lambda console for development https://docs.aws.amazon.com/lambda/latest/operatorguide/sdks-functions.html The AWS Lambda provided AWS SDK for JavaScript...