in http/server/operationrequest/operationrequest.go [19:27]
func NewOperationRequest(region string, opts OperationRequestOptions) mux.MiddlewareFunc {
return func(next http.Handler) http.Handler {
return &operationRequestMiddleware{
next: next,
region: region,
opts: opts,
}
}
}