isStorageClassHeader returns true if the header is a supported storage class header
(headerKey string)
| 526 | |
| 527 | // isStorageClassHeader returns true if the header is a supported storage class header |
| 528 | func isStorageClassHeader(headerKey string) bool { |
| 529 | return strings.EqualFold(amzStorageClass, headerKey) |
| 530 | } |
| 531 | |
| 532 | // isStandardHeader returns true if header is a supported header and not a custom header |
| 533 | func isStandardHeader(headerKey string) bool { |