Use API-Level (s3api) commands with the AWS CLI in OnPremise Server

0

https://docs.aws.amazon.com/cli/latest/userguide/cli-services-s3-apicommands.html

I would like to upload logs to S3 using s3api on an on-premise server. Is this possible according to the specifications?

Best Regards,

已提问 2 个月前252 查看次数
1 回答
2
已接受的回答

Hello.

If you can use the AWS CLI, it is possible to upload files from on-premises to S3 using the "aws s3api" command.
You can use "put-object" when uploading files.
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3api/put-object.html

aws s3api put-object --bucket S3_BUCKET_NAME --key sample2/aaa/1 --body test.txt
profile picture
专家
已回答 2 个月前
profile picture
专家
已审核 2 个月前
profile pictureAWS
专家
已审核 2 个月前
  • CLI is one option but you can also do same thing via the AWS SDK of your preferred language: Python, Java, C#, etc. if you need to integrate this feature in a large programmed framework.

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

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

回答问题的准则