Amazon S3 Server Side Encryption Bucket Policy problems
问题 I am using a bucket policy that denies any non-SSL communications and UnEncryptedObjectUploads. { "Id": "Policy1361300844915", "Version": "2012-10-17", "Statement": [ { "Sid": "DenyUnSecureCommunications", "Action": "s3:*", "Effect": "Deny", "Resource": "arn:aws:s3:::my-bucket", "Condition": { "Bool": { "aws:SecureTransport": false } }, "Principal": { "AWS": "*" } }, { "Sid": "DenyUnEncryptedObjectUploads", "Action": "s3:PutObject", "Effect": "Deny", "Resource": "arn:aws:s3:::my-bucket/*",