isStandardHeader returns true if header is a supported header and not a custom header
(headerKey string)
| 531 | |
| 532 | // isStandardHeader returns true if header is a supported header and not a custom header |
| 533 | func isStandardHeader(headerKey string) bool { |
| 534 | return supportedHeaders[strings.ToLower(headerKey)] |
| 535 | } |
| 536 | |
| 537 | // sseHeaders is list of server side encryption headers |
| 538 | var sseHeaders = map[string]bool{ |
no outgoing calls