Mina Asham
Mina Asham
## Motivation and Context **Issue:** https://github.com/aws/aws-sdk-java-v2/issues/2300 Migrating from SDK V1 to V2 we hit an issue where do something like this (pseudo-code): ``` Path temp = Files.createTempFile(...); s3.getObject(bucket, key, temp);...
Hi, I love this library and the rules it brings, I faced some issues when running this in an offline setting though, and was wondering if we can add an...
In V2, the ProfileCredentialsProvider loads once and doesn't refresh/reload if the ProfileFile it was generated from got updated. In V1, the ProfileCredentialsProvider has support for this try to reload every...
Migrating from SDK V1 to V2 we hit an issue where do something like this (pseudo-code): ``` Path temp = Files.createTempFile(...); s3.getObject(bucket, key, temp); // use temp file ``` This...