S3
-
s3 다운로드 업로드 삭제 권한 추 가카테고리 없음 2022. 4. 21. 16:43
2개 버킷 권한 추가 권한 다운로드 업로드 삭제 1. 사용자 생성 2. 사용자 그룹 생성 3. 역할 생성 4. 그룹에 역할 연결 하기 ------------josn-------- { "Version": "2012-10-17", "Statement": [ { "Sid": "VisualEditor0", "Effect": "Allow", "Action": "s3:ListBucket", "Resource": [ "arn:aws:s3:::one-bucket", "arn:aws:s3:::one-bucket1" ] }, { "Sid": "VisualEditor1", "Effect": "Allow", "Action": [ "s3:PutObject", "s3:GetObject", "s3:DeleteObject" ], "..
-
aws s3 cp 전체파일IT 2020. 3. 30. 17:54
#출처 https://stackoverrun.com/ko/q/12292934 amazon-web-services - aws s3 cp - 루트 디렉토리에있는 모든 객체를 복사하지만 하위 디렉토리는 복사하지 마십시오. s3 버킷 루트 폴더 내의 내용을 루트 내부의 다른 폴더에 복사해야합니다. 다른 폴더 (folder1, folder2)를 제외하고 root (textfile1.txt 등)의 모든 파일을 folder3에 복사하려고합니다. aws s3 복사 명령은 무엇이 있습니까? / folder1 folder2 textfile1.txt textfile2.txt ... stackoverrun.com 옵션 값을 넣어줘야한다. aws s3 cp s3://my-bucket s3://my-bucket/destinati..
-
s3 로그 이관IT 2020. 2. 19. 12:07
#해당 폴더에서 전체 파일을 s3로 이관하기 # --recursive 넣는다. aws s3 cp . s3://my-fruits --recursive upload: ./cherry.txt to s3://my-fruits/cherry.txt upload: ./apple.txt to s3://my-fruits/apple.txt upload: favorites/melon.txt to s3://my-fruits/favorites/melon.txt #출처 https://chobolife.github.io/blog/2019/08/04/ec2-s3-authority/