SignV4TrailerExpress sign the request before Do(), in accordance with http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html
(req http.Request, accessKeyID, secretAccessKey, sessionToken, location string, trailer http.Header)
| 418 | // SignV4TrailerExpress sign the request before Do(), in accordance with |
| 419 | // http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html |
| 420 | func SignV4TrailerExpress(req http.Request, accessKeyID, secretAccessKey, sessionToken, location string, trailer http.Header) *http.Request { |
| 421 | return signV4(req, accessKeyID, secretAccessKey, sessionToken, location, ServiceTypeS3Express, trailer) |
| 422 | } |
| 423 | |
| 424 | // SignV4Trailer sign the request before Do(), in accordance with |
| 425 | // http://docs.aws.amazon.com/AmazonS3/latest/API/sig-v4-authenticating-requests.html |