Amazon web services – AWS S3 storage class file size threshold policy
I have the following policy statement that would require the INTELLIGENT_TIERING storage class key applied to bucket foo: { "Sid": "EnforceIntelligentTiering", "Effect": "Deny", "Principal": "*", "Action": "s3:PutObject", "Resource": "arn:aws:s3:::foo/*", "Condition": { "StringNotEquals": { "s3:x-amz-storage-class": "INTELLIGENT_TIERING" } } } If I…