amazonka icon indicating copy to clipboard operation
amazonka copied to clipboard

A comprehensive Amazon Web Services SDK for Haskell.

Results 109 amazonka issues
Sort by recently updated
recently updated
newest added

When the env AWS_STS_REGIONAL_ENDPOINTS is set to regional, it's calling [sts.amazonaws.com](https://sts.amazonaws.com/) whereas it should call [sts.ap-south-1.amazonaws.com](https://sts.ap-south-1.amazonaws.com/) or some other regional endpoint. [AWS docs reference](https://docs.aws.amazon.com/sdkref/latest/guide/feature-sts-regionalized-endpoints.html) This helps when we're haskell code...

AWS SDKs can check for this key in their config file, and invoke a subprocess to get credentials. We should do so too. https://docs.aws.amazon.com/sdkref/latest/guide/feature-process-credentials.html

enhancement

By providing appropriate flags, we could toggle the dependency on `amazonka-sts` and `amazonka-sso`. This reduces the footprint when compiling things that just have to run on EC2 with a single...

Since `amazonka` and `amazonka-*` service bindings have all moved to using unprefixed records, `Generic` instances, and a strong recommendation to use one of `generic-lens`/`generic-optics`/`-XOverloadedRecordDot`, we should look at breaking the...

post 2.0

Is it possible for amazonka to generate a package for Amazon Managed Blockchain Query? This is a slightly different API from Amazon Managed Blockchain. It's for querying data on chain...

service config

Splitting the generator front and backend would allow us (or other people!) to make amazonka-style SDKs for their own requests. Some examples: API Gateways with IAM Authentication, Amazon's own Selling...

enhancement
generator

While it's not technically necessary to implement the `AWSRequest` instance, all practical uses of any request type need these `Typeable` constraints, because `retryRequest` and `awaitRequest` run hooks. Should have minimal...

enhancement
question

It could be neat to have a type family that maps things like `Amazonka.DynamoDB.GetItem` to `"dynamodb:GetItem" :: Symbol`. Might be a way to answer "which calls might this block of...

enhancement
post 2.0

We should have CI produce haddocks for main, and upload them to `amazonka.brendanhay.nz`. ***** **Original Text:** The documentation page https://amazonka.brendanhay.nz/ is missing haddocks for amazonka-ec2. Is this a bug in...

post 2.0

Amazon SSO gives you a `refresh_token` which you can use to renew your `access_token` by making a call to [`Amazonka.SSOOIDC.CreateToken`](https://hackage.haskell.org/package/amazonka-sso-oidc-2.0/docs/Amazonka-SSOOIDC-CreateToken.html) ## Legacy non-refreshable format This is what we currently use...