skip to Main Content

Can't create an User on AWS IAM

I'm trying to setup my aws cli. I downloaded it and everything worked. Now I wanted to log in from my powershell script. Set-AWSCredentials –AccessKey key-name –SecretKey key-name Because I don't have any users at the moment I had to…

VIEW QUESTION

AWS S3 GET pre-signed url fails with CORS intermittently

I'm generating a pre-signed url using java for an image stored in s3 public String generateDownloadLink(String bucketName, String responseContentDisposition, String key, int days) { GetObjectRequest objectRequest = GetObjectRequest.builder() .bucket(bucketName) .responseContentDisposition(responseContentDisposition) .key(key).build(); GetObjectPresignRequest preSignRequest = GetObjectPresignRequest.builder() .signatureDuration(Duration.ofDays(days)) .getObjectRequest(objectRequest) .build(); PresignedGetObjectRequest presignedRequest…

VIEW QUESTION
Back To Top
Search