16 #ifndef _MINIO_CREDS_H
17 #define _MINIO_CREDS_H
29 std::string_view access_key_;
30 std::string_view secret_key_;
31 std::string_view session_token_;
32 unsigned int expiration_;
36 Credentials(std::string_view access_key, std::string_view secret_key,
37 std::string_view session_token =
"",
unsigned int expiration = 0);
38 std::string AccessKey();
39 std::string SecretKey();
40 std::string SessionToken();
62 StaticProvider(std::string_view access_key, std::string_view secret_key,
63 std::string_view session_token =
"");