skip to Main Content

AWS S3: Bucket cannot have ACLs set with ObjectOwnership's BucketOwnerEnforced setting) – Amazon Web Sevices

On my website, all of a sudden I cannot upload photos. I get the following error: ##### RightAws::S3Interface returned an error: 400 Bad Request <?xml version="1.0" encoding="UTF-8"?> <Error><Code>InvalidBucketAclWithObjectOwnership</Code><Message>Bucket cannot have ACLs set with ObjectOwnership's BucketOwnerEnforced setting</Message><RequestId>REQUEST</RequestId><HostId>ID$ ##### RightAws::S3Interface request: https://bucket.s3.amazonaws.com:443/…

VIEW QUESTION

Why isn't KenisisClient.putRecord() not accepting a valid PutRecordRequest – Amazon Web Sevices

Here is my code KinesisClient kinesisClient = KinesisClient.builder().build(); PutRecordRequest putRecordRequest = new PutRecordRequest(); putRecordRequest.setStreamName("stream-name"); putRecordRequest.setPartitionKey("SomeString-" + UUID.randomUUID()); putRecordRequest.setData(ByteBuffer.wrap(data)); PutRecordResponse putRecordResponse = kinesisClient.putRecord(putRecordRequest); For some strange reason it's saying it can't resolve the putRecord(PutRecordRequest) method even though it's clearly there when…

VIEW QUESTION
Back To Top
Search