LoginSignup
1

More than 3 years have passed since last update.

【AWS】S3へのデータアップロード

Posted at
aws s3 cp uploadFileName s3://bucketName/

▼403になったらアクセス権限を確認
https://aws.amazon.com/jp/premiumsupport/knowledge-center/s3-troubleshoot-403/

・private
・public-read
・public-read-write
・authenticated-read
・bucket-owner-read
・bucket-owner-full-control
・log-delivery-write

aws s3 cp uploadFileName s3://bucketName/ --acl public-read

ただし、public-readにすると全世界からアクセス可能になるので注意

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1