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,

1 Answer
2
Accepted Answer

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
EXPERT
answered a month ago
profile picture
EXPERT
reviewed a month ago
profile pictureAWS
EXPERT
reviewed a month ago
  • 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.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions