Questions tagged [amazon-s3-access-points]

26 questions
0
votes
0 answers

AWS S3 access point iam policy

Let's say I have the following AWS S3 access point: arn:aws:s3:us-west-2:123456789012:accesspoint/test-bucket1 I need to add this ARN to an IAM policy so that my application, running in AWS with the respective IAM role, will be able to access the…
0
votes
0 answers

AWS AccessPoint Cross Account Access to more than 1000 external accounts

I'm trying to give access to more than 5000 external accounts, my s3 bucket access point. How can I achieve it? using access points to give permissions to specific folder in S3 Bucket adding all accounts in the policy principle will increase the…
0
votes
1 answer

S3 Same Region Replication configuration issue

I am using S3 SRR to copy files from source bucket to destination bucket. I was able to successfully set it up. I need to add below two features now in this replication: delete the file from source bucket once it is replicated in destination…
0
votes
1 answer

How do I set up the Access Point Policy to allow my web server to access objects in S3 Bucket:

I've followed examples found on StackOverflow and elsewhere, but it's not working and I don't know what I'm doing wrong. Here's the policy code: { "Version": "2012-10-17", "Statement": [ { "Sid": "Statement1", …
ViennaMike
  • 2,207
  • 1
  • 24
  • 38
0
votes
0 answers

S3 access point as Spark Eventlog Directory

We have a standalone Spring boot based Spark application where at the moment property spark.eventLog.dir is set to an s3 location. SparkConf sparkConf = new SparkConf() .setMaster("local[*]") …
0
votes
1 answer

InvalidBucketName with Java AWS SDK 1.x using S3 Access points

I am trying to perform GetObject operation on a bucket via configured accesspoint through AWS SDK version 1.x (tried with 1.12.348 and 1.11.1004): com.amazonaws aws-java-sdk-s3
adesai
  • 370
  • 3
  • 22
0
votes
1 answer

List out Root Directory path in EFS

So trying to list accesspoints via aws cli along with RootDirectory Path: Here is the output of command: aws efs describe-access-points --region="us-east-1" { "AccessPoints": [ { "ClientToken":…
0
votes
0 answers

Access point entry in private hosted zone of AWS

I want to access S3 bucket through access points, however I also want to give URLs for the access points to the end users/services. I have a VPC endpoint that has open policy. I do not see a way to add an entry in the Private hosted zone for the…
0
votes
1 answer

Is there a way to create a snowflake external stage, which reads data from s3 access point?

I want to create an external stage in snowflake, which will use S3 access point to access files stored in S3 bucket. I've started by creating a IAM Role, with attached policy: { "Version": "2012-10-17", "Statement": [ { …
0
votes
1 answer

Flink FileSync with AWS S3 plugin throw error when accessing S3 access point - "null uri host"

After following this instruction I am able to access the S3 bucket via access point + VPC endpoint perfectly fine from AWS CLI. Basically I use s3://arn:aws:s3:ap-southeast-1::accesspoint/ the same way as I…
0
votes
0 answers

AWS s3 Provide access via CORS or access points? 403 forbidden error

I'm uploading videos to an AWS s3 bucket. That's working great. I now need to render those videos via Nationbuilder templates, which will look like From my current testing, I'm getting a 403 forbidden error…
1
2