




https://docs.aws.amazon.com/ko_kr/cli/latest/userguide/getting-started-install.html



aws configure
aws s3 ls
aws ec2 describe-instances

aws configure
# 버킷 리스트 확인
aws s3 ls
# ec2 리스트 확인
aws ec2 describe-instances
# 이미지 있는 폴더로 cmd 위치 이동 후 본인 버킷 이동
# aws s3 ls edowon-bucket-new3
aws s3 ls [본인 버킷]
# 이미지 업로드
# aws s3 cp .\test.png s3://edowon-bucket-new3
aws s3 cp .\test.png s3://본인버킷/
# 이미지 다운로드
# aws s3 cp s3://s3://edowon-bucket-new3/test.png .\
aws s3 cp s3://본인버킷/test.png .\