SignV4Outposts sign the request for S3 on Outposts (service name s3-outposts).
(req http.Request, accessKeyID, secretAccessKey, sessionToken, location string)
| 429 | |
| 430 | // SignV4Outposts sign the request for S3 on Outposts (service name s3-outposts). |
| 431 | func SignV4Outposts(req http.Request, accessKeyID, secretAccessKey, sessionToken, location string) *http.Request { |
| 432 | return signV4(req, accessKeyID, secretAccessKey, sessionToken, location, ServiceTypeS3Outposts, nil) |
| 433 | } |
| 434 | |
| 435 | // SignV4WithServiceType signs a request with AWS Signature Version 4 using a custom service type. |
| 436 | func SignV4WithServiceType(req http.Request, accessKeyID, secretAccessKey, sessionToken, location, serviceType string) *http.Request { |