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