페이지 나가기 이벤트

https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onbeforeunload https://developer.mozilla.org/ko/docs/Web/API/Window/beforeunload_event   ex1 <script> //이 페이지에서 뒤로가기 하거나, 목록을 누를때 그리고 새로고침을 할 때 이벤트 발생 window.onbeforeunload = function(){ return ‘페이지를 벗어나시겠습니까?’; [...]

aws S3 버킷 타 계정으로 복사

공식문서 : https://aws.amazon.com/ko/premiumsupport/knowledge-center/copy-s3-objects-account/ 1. 새로운 계정에서 정책 생성 : https://console.aws.amazon.com/iam/home#/policies { “Version”: “2012-10-17”, “Statement”: [ { “Effect”: “Allow”, “Action”: [ “s3:ListBucket”, “s3:GetObject” ], “Resource”: [...]