amazon-s3 Questions
3
Solved
I am trying to send a file from my s3 bucket to the client with my NodeJS application. This is what I have so far:
import { S3 } from '@aws-sdk/client-s3';
const BUCKET_NAME = process.env.S3_BUCKE...
Rhinestone asked 3/8, 2021 at 4:55
0
Trying to fasten the direct transfer process of files/objects from one AWS S3 object storage to another where both have different credential.
I tried to follow the code given on below link but its ...
Wallacewallach asked 31/7 at 16:24
3
Solved
I want to change the S3 bucket to have default storage class of Infrequent Access.
So if I upload file to the bucket, it should directly go to Infrequent Access storage.
I don't want to use the L...
Ozzy asked 8/9, 2017 at 7:51
4
Solved
I got a strange behavior of that method:
import java.net.URI
URI url = new URI("https://pmi_artifacts_prod.s3.amazonaws.com");
System.out.println(url.getHost()); /returns NULL
URI url2 = new U...
2
Solved
I am trying to download a file from AWS S3 to my iOS mobile app from a folder that is specific to the user, using Transfer Manager, like so:
@IBAction func download() {
let transferManager = AWSS...
Pontic asked 5/3, 2017 at 6:52
5
Azure provides shared access signatures ([1], [2], [3]) that can delegate access (read/write) to specific blobs/containers/tables/queues in an Azure Storage account using an access key generated th...
Kiker asked 10/10, 2013 at 22:41
9
Solved
I have a bucket on S3 in which I have large amount of text files.
I want to search for some text within a text file. It contains raw data only.
And each text file has a different name.
For example,...
Intwine asked 17/2, 2015 at 8:35
8
Solved
I have an AWS root user which I used to create a S3 bucket on Amazon. Now I want to make this bucket public by adding following policy:
{
"Version": "2012-10-17",
"Statem...
Perennial asked 19/11, 2018 at 11:38
7
I am trying to create a lambda function from a CloudFormation template based on this example:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/quickref-lambda.html
As can be seen fro...
Gaelan asked 5/12, 2017 at 15:8
5
I want to delete my non empty s3 bucket created with terraform. I used force_destroy=true option as well but still i get
BucketNotEmpty: The bucket you tried to delete is not empty
status code: 409...
Anderegg asked 31/1, 2021 at 21:23
5
I'm using Amazon S3 webhosting for my static html,js,css (etc..) files.
After replacing my index.html file, I still get the old version when consuming via the browser.
I would like to set a defaul...
Soriano asked 1/3, 2017 at 12:23
2
Solved
does anyone know how to set up CloudFront Caching correctly? I've got a Jekyll website in S3 and CloudFront set up like this:
Path Pattern: Default (*)
Minimum TTL: 86400
Maximum TTL: 604800
Defa...
Lu asked 12/3, 2017 at 12:39
3
Solved
I've been having an issue across many of my sites that rely on S3 as an origin for Cloudfront. However, I'm having issues with allowing multiple domains (instead of a global * allowed).
I have fol...
Fluoric asked 5/1, 2016 at 15:25
13
Solved
What I want to achieve
To scrape an website using AWS Lambda and save the data on S3.
The issues I'm having
When I execute Lambda, the following error message appears.
{ "errorMessage": ...
Lukasz asked 6/6, 2023 at 12:10
8
Solved
I would like to transfer data from a table in BigQuery, into another one in Redshift.
My planned data flow is as follows:
BigQuery -> Google Cloud Storage -> Amazon S3 -> Redshift
I know about Go...
Chufa asked 5/9, 2016 at 11:25
3
Solved
With this bucket policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::...
Graphitize asked 28/5, 2019 at 15:35
3
Solved
AWS CLI provides aws s3 sync command to sync data between 2 locations.
Is there an equivalent command in boto3?
I can't find this kind of command in boto3 documentation.
Piranha asked 19/5, 2022 at 9:44
1
I have a server-side application that runs through a large number of image URLs and uploads the images from these URLs to S3.
The files are served over HTTP. I download them using InputStream I get...
Outpost asked 13/2, 2019 at 18:3
5
Solved
I want to make S3 bucket public to everyone but I get access denied when I do That and it Says
You can't grant public access because Block public access settings
are turned on for this account. T...
Manual asked 11/5, 2019 at 21:22
4
Solved
Currently, I am using the Apache ParquetReader for reading local parquet files,
which looks something like this:
ParquetReader<GenericData.Record> reader = null;
Path path = new Path("userd...
Flatwise asked 9/4, 2020 at 17:2
3
Solved
I'm trying to create an Elastic Container Service (ECS) setup from Cloud Formation.
However I don't want the ECS repository to have the ugly autogenerated URI:
111111111.dkr.ecr.us-east-1.amazon...
Complaisance asked 24/8, 2017 at 9:34
3
Solved
I have an AWS cloudfront ahead of an S3 bucket that contains my frontend app (https://myapp.com). When I go to https://myapp.com/experts?profession=carpenter through the navigation elements of my s...
Shetrit asked 3/3, 2019 at 5:12
5
The objects in my Amazon S3 bucket are all of the content type application/octet-stream. Some of these objects are PDFs, sometimes images like JPG, GIF, PNG. How can I change the content type of th...
Hernando asked 7/12, 2016 at 10:37
16
Solved
I am trying to setup CloudFront to serve static files hosted in my S3 bucket. I have setup distribution but I get AccessDenied when trying to browse to the CSS (/CSS/stlyle.css) file inside S3 buck...
Absorbed asked 15/2, 2017 at 14:13
6
I have a dataset in parquet in S3 partitioned by date (dt) with oldest date stored in AWS Glacier to save some money. For instance, we have...
s3://my-bucket/my-dataset/dt=2017-07-01/ [in glacier]...
Reneta asked 21/8, 2017 at 13:12
© 2022 - 2024 — McMap. All rights reserved.