{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowS3Access",
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::{S3 버킷 이름}/{하위 폴더 이름}/*",
"arn:aws:s3:::{S3 버킷 이름}/{하위 폴더 이름}/*"
]
},
{
"Sid": "AllowListBucket",
"Effect": "Allow",
"Action": "s3:ListBucket",
"Resource": "arn:aws:s3:::{S3 버킷 이름}"
}
]
}