| 1386 | |
| 1387 | private: |
| 1388 | static Setter StringSetter(void (ObjectRequest::*req_method)(Aws::String&&)) { |
| 1389 | return [req_method](const std::string& v, ObjectRequest* req) { |
| 1390 | (req->*req_method)(ToAwsString(v)); |
| 1391 | return Status::OK(); |
| 1392 | }; |
| 1393 | } |
| 1394 | |
| 1395 | static Setter DateTimeSetter( |
| 1396 | void (ObjectRequest::*req_method)(Aws::Utils::DateTime&&)) { |
nothing calls this directly
no test coverage detected