Questions tagged [s3-bucket]
56 questions
0
votes
2 answers
Accessing specified key from s3 bucket?
I have a S3 bucket xxx. I wrote one lambda function to access data from s3 bucket and writing those details to a RDS PostgreSQL instance. I can do it with my code. I added one trigger to the lambda function for invoking the same when a file falls on…

ShaiNe Ram
- 395
- 2
- 6
- 19
0
votes
2 answers
AWS Lambda and S3 trigger event data
I have a lambda function that I need to run eveytime there is a change in my s3 Bucket. I have added the trigger and it is working just fine, but I was wondering if there is any way to limit the scope the lambda function is to be run... for example…

shwz
- 426
- 1
- 6
- 22
0
votes
1 answer
File upload on s3 fail getting the com.amazonaws.AmazonClientException Exception
I am using the amazonaws S3 for uploading the media file getting the following error like below:-
E/UploadTask: Failed to upload: 15 due to Forbidden (Service: Amazon S3; Status Code: 403; Error Code: 403 Forbidden; Request ID: null)
…

Ravindra Kushwaha
- 7,846
- 14
- 53
- 103
0
votes
2 answers
Uploading file to Amazon S3 bucket : upload works fine but some large files are empty
public void upload(List fileUpload) {
for(CommonsMultipartFile file : fileUpload)
{
try
{
String contentType = file.getContentType();
…

Raj
- 313
- 2
- 9
0
votes
1 answer
Is there any way to create a folder in the already existing S3 bucket thorugh python?
In the documentation of boto3 there is no function to do make a directory in the bucket. Although we can add the folder manually but I need some code to do through python.

Mayank Bansal
- 1,755
- 2
- 9
- 22
0
votes
1 answer
IAM Role for AWS EC2 container service
Q : Is the IAM Role for EC2 instances and ecs instances same?
Scenario: I want one ecs container instance in my account to be able to access one S3 bucket. I went through all the IAM policies but I couldn't find one which allows my ecs instance to…

Devesh
- 21
- 3
0
votes
0 answers
After uploading many files to S3 I see a folder ry/
After uploading more than 100 files to an S3 bucket I see files in the grid as ry/
If I search for them manually they don't exist. I'm assuming they are Temporary files or something. But can someone confirm this ? If not what is it ?
Refer…

Nigel Fds
- 803
- 2
- 12
- 29
0
votes
1 answer
How can I use one route53 record to point to two S3 buckets?
I have two buckets a and b with static websites enabled that redirect to original buckets A and B. I created two route53 record sets(A records) slave-1 and slave-2 pointing to each bucket a and b. I then created a Master record set(A record) with…

samuraijack
- 9
- 2
0
votes
1 answer
ERR_INSECURE_RESPONSE while accessing files from s3 bucket
When I access image from S3 bucket using HTTPS I get error as, net::ERR_INSECURE_RESPONSE for s3 bucket.
I want to load image file using HTTPS only.
Below is the link of image file which I can access using HTTP but can not using HTTPS. …

AndyPHP
- 361
- 2
- 5
0
votes
0 answers
Could not initialize class com.amazonaws.ClientConfiguration
I am using AWS S3bucket and getting jars from this link. The problem is that my project have jackson 1.9 jars but this link give me jackson 2.6 jars and getting this
Could not initialize class com.amazonaws.ClientConfiguration
Is there is any way…

unknownbits
- 2,855
- 10
- 41
- 81
-1
votes
1 answer
Accessing aws s3 private bucket content
How to create signed url to show aws s3 private content using php?
Thanks

Ankneema
- 45
- 5