aws-lite icon indicating copy to clipboard operation
aws-lite copied to clipboard

A simple, fast, extensible AWS client

Results 18 aws-lite issues
Sort by recently updated
recently updated
newest added

### Describe the problem underlying the enhancement request Two main things going on with our .ini (`~/.aws/credentials`) support: 1. We rely on a relatively large (relatively speaking) dependency: `ini`, which...

enhancement

- [x] Forked the repo and created your branch from `master` - [x] Made sure tests pass (run `npm it` from the repo root) - [ ] Expanded test coverage...

### Describe the issue When using the plugin with TS, I got the error: > error TS7016: Could not find a declaration file for module '@aws-lite/dynamodb'. '/..../node_modules/@aws-lite/dynamodb/src/index.mjs' implicitly has an...

bug

Did some investigating into Deno + JSR support. The Node.js compatibility is pretty excellent right now, although testing the module required some workarounds. (We now have a related [open issue...

enhancement

Recommend implementing the standard credential provider chain as per AWS SDK standards. The providers have an order of precedence, and support refresh tokens for federation, operating in containers, and EC2...

enhancement
help wanted
question

First stab at presigned URLs. Invoked just like a regular request, but include `SignQuery: true` and, optionally, additional parameters for aws4. Method returns a string containing the presigned URL rather...

### Describe the problem underlying the enhancement request My profiles are setup via `aws configure sso`. So, I tried using `profile` ```ts const aws = await awsLite({ region: 'eu-central-1', profile:...

enhancement

### Describe the issue The `getCredentials` method https://github.com/architect/aws-lite/blob/4f0aba7a28a33db1494f22b7cfd41f226050aec2/src/get-creds.js#L2-L16 doesn't take into account various AWS environments that don't require credentials. In this case, we're trying to use aws-lite within a docker...

bug

AWS SDK v2 / 3 have the concept of [waiters](https://aws.amazon.com/blogs/developer/waiters-in-modular-aws-sdk-for-javascript/), which are custom implementations that poll an endpoint looking for a specific change. Examples ([from their blog](https://aws.amazon.com/blogs/developer/waiters-in-modular-aws-sdk-for-javascript/), edited for brevity):...

### Describe the problem underlying the enhancement request There is a known issue on AWS SDK v3 typings: https://github.com/aws/aws-sdk-js-v3/issues/1613 Marking everything as possibly undefined undermines the whole point of typings...

enhancement