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 Respostas
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
respondido há 10 meses
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
respondido há 10 meses

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas