userver: userver/s3api/models/request.hpp Source File
Loading...
Searching...
No Matches
request.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/s3api/models/request.hpp
4/// @brief Request class. Although it is rarely used in S3 client, it is
5/// required to implement authenticator
6
7#include <userver/clients/http/request.hpp>
8
9USERVER_NAMESPACE_BEGIN
10
11namespace s3api {
12
13struct Request {
14 clients::http::Headers headers;
15 std::string body;
16 std::string bucket;
17 std::string req;
18 clients::http::HttpMethod method;
19};
20
21} // namespace s3api
22
23USERVER_NAMESPACE_END