S3(Simple Storage Service)

 

S3(Simple Storage Service)
업계 최고 수준의 확장성, 데이터 가용성, 보안 및 성능을 제공하는 객체 스토리지 서비스


1

CLI

Create Bucket

aws s3api create-bucket \
--bucket BUCKET-NAME \
--region ap-northeast-2 \
--create-bucket-configuration LocationConstraint=ap-northeast-2

Put Object

aws s3api put-object --bucket BUCKET-NAME --key 1.jpg --body 1.jpg

List Object

aws s3api list-objects-v2 --bucket BUCKET-NAME