Chris Lee
Chris Lee
There are a few AWS services, such as Lambda function URLs, that aren't an AWS SDK call - they're an HTTPS endpoint that requires Sigv4 for AWS_IAM auth. Struggling to...
A few thoughts now that we managed to make this work: 1) It isn't clear that signing, specifically `DefaultAwsSigner`, is intended to be part of the SDK public API; its...
Experiencing the same error on MacOS, when uploading a large (937mb) generic package; there are no network proxies or other intermediaries.
I have a case open with AWS on this - they've been digging into it for a few weeks, have been able to reproduce (it isn't just CLI - equivalent...
This addresses a few challenges we are running into - possible to get this merged?
Don't believe that #316 addresses the same issues. As I understand it #316 is about downloading/transforming the SPDX license list; that list doesn't include the multitude of aliases/typos for license...
The issue I'm seeing is that gradle-build-action is not requesting "other" Gradle versions (non-primary, used by TestKit). In this build there is a set of Gradle versions being tested -...
Use the AWS Java SDK, which is idiomatic for Java usage. The Kotlin SDK is idiomatic for Kotlin, and includes things that don't exist in Java - DSL builders, coroutines...
SPI is one possible option, but a bit magical for some cases (random jar on class path changes behaviour). It would be great to not fully internalize all that and...
Nice, thanks, that example address the factory issue - creating a builder uniformly (which I can now remove some reflective code for). It still requires dispatch to each of the...