AWS S3 Deleting multiple objects by python3
S3 Deleting multiple objects by python 3 단일파일 삭제와 여러개 파일 삭제는 아래처럼 차이가 있다. 주의할 점은 속성명과 대소문자 구분이다. 단일 파일 삭제 s3.delete_object( Bucket="MyBucketName", Key="test/test (2).jpg" ) 멀티 파일 삭제 s3.delete_objects( Bucket="MyBucketName", Delete = { 'Objects': [{'Key': '1/test1.jpg', 'Key': '2/test2.jpg'}] } ) 실제 코드 S3 설정파일을 직접 소스코드에 입력하거나 json 등으로 S3에 대한 설정을 먼저 한다. config.json { "endpoint_url" : "https://obje..
■ 데브옵스 ■/AWS
2020. 11. 6. 18:52