How to get data from webservices and save that in S3

0

Hi all, i need to get data from webservices and put that data in S3, which method/architecture is more appropiate, or how to do it?, thanks

2 回答
0

You can take a look at the documentation where it explains the process for uploading objects to s3 files via Amazon S3 console, AWS SDKs, REST API or CLI.

AWS
David C
已回答 10 个月前
0

For adding objects to an S3 bucket the requesting entity would need permission to complete the PUT request. This can be accomplished by Identity and Access Management in the AWS account. There a policy can be attached to a User or Role giving that entity permission to complete the PUT request. Additionally, with S3 bucket policies you can further restrict access to the bucket for increased security: https://docs.aws.amazon.com/AmazonS3/latest/userguide/example-bucket-policies.html

If the web services you are referring to are located in a Virtual Private Cloud (VPC), a recommended method to put objects into S3 is via a S3 Gateway Endpoint. This connection will allow the object to be written directly to S3 from the VPC without traversing the internet. This type of gateway service is free.

https://docs.aws.amazon.com/vpc/latest/privatelink/vpc-endpoints-s3.html

profile pictureAWS
已回答 10 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则

相关内容