Debora N. Ito
Debora N. Ito
`NotAuthorizedException` usually means the aws credential or role used to make the request does not have permission to perform the action. Can this be the case? How often do you...
Can you show a full stacktrace?
This looks like a validation on the service side related to that device tracking. I don't have expertise in Cognito so I'll relay this to the Cognito team and wait...
Here's the Cognito team response, and I quote: --- Investigation Details: Please note, if “remember devices" feature is turned on (Either to "Always" or "User Opt In") for the user...
Hi @Avinm thank you for reaching out. Indeed we don't see a very helpful error message, just ``` java.lang.IllegalStateException: Command returned non-zero exit value: 127 ``` We should improve the...
This is TokenBucket.calculateTimeWindow ([link](https://github.com/aws/aws-sdk-java/blame/master/aws-java-sdk-core/src/main/java/com/amazonaws/internal/TokenBucket.java#L310)): ``` synchronized void calculateTimeWindow() { timeWindow = Math.pow((lastMaxRate * (1 - BETA)) / SCALE_CONSTANT, 1.0 / 3); } ``` where SCALE_CONSTANT = 0.4; Maybe the JDK...
@mehakmeet @steveloughran any new information?
@A4L Apologies for the long silence in this. I see that behavior too but I don't know why the whole service endpoint is in the URI path. A workaround is...
Even though AbstractPutObjectRequest takes a plain String input, in the end the S3 CreateMultipartUpload API only accepts a well-defined list of values for storage class- https://docs.aws.amazon.com/AmazonS3/latest/API/API_CreateMultipartUpload.html#API_CreateMultipartUpload_ResponseSyntax so the restriction to...
Yes, vendors other than Amazon are out of scope of the AWS SDKs, unfortunately. Marking this to auto close soon, let us know if you have any more questions.