AWS CLI 설치
S3 연동
aws configure
AWS Access Key ID [None]: [Access Key]
AWS Secret Access Key [None]: [Secret Key]
Default region name [None]: ap-northeast-2
Default output format [None]: [공백 enter]
aws s3 ls
# 내 계정에 존재하는 S3 버킷 리스트 출력
aws s3 cp [source파일명] s3://[destination버킷명]/[destination파일명]
# s3에 instance에 있는 특정 파일 업로드
aws s3 cp [디렉토리 경로] s3://[destination버킷명]/[destination파일명] --recursive
# s3에 instance에 있는 디렉토리 경로 아래에 있는 모든 파일 업로드
aws s3 cp s3://[source버킷명]/[source파일명] [destination파일명]
# instance에 s3에 있는 특정 파일 다운로드
aws s3 cp s3://[source버킷명]/[source파일명] [destination파일명] --recursive
# instace에 s3에 있는 디렉토리 경로에 아래에 모든 파일 다운로드