George Fu

Results 216 comments of George Fu

Don't ask me why I made this list, but just as a record, here are some PRs related to reducing generated code size: * https://github.com/aws/aws-sdk-js-v3/pull/3830 generalized data mapping function (...

Mark those modules are external while bundling. Then they will sit in a split chunk that should never be imported if you are indeed providing credentials. That reduces the size...

Please make a pre-bundle build step that replaces the runtimeConfig.ts file with one that does not contain `@aws-sdk/credential-provider-node` if that is what you need. The use-case is not common enough...

closing this since a larger fix is needed, will be done in #6112

the model's waiter is pointed at `"errorType": "DBInstanceNotFound"`. This is the awsQueryError trait code value and not the error shape id. Checking with the teams to see whether the service...

ask for an additional matcher: ``` { "state": "success", "matcher": { "errorType": "DBInstanceNotFound" } }, { "state": "success", "matcher": { "errorType": "DBInstanceNotFoundFault" } }, ```

the fix is expected as version https://github.com/aws/aws-sdk-js-v3/releases/tag/v3.580.0 to be released later today

`clientConfig` is only used if an additional client is needed to fetch credentials, such as STS, SSO, or SSO-OIDC. The `clientConfig` object is passed to these clients. If you have...

Based on the example provided, it seems that you want to initialize the client in two possible ways ### locally with `fromIni` credentials with a profile ```ts import { Lambda...