0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 12:12:15 +02:00

AWS: created mini-SDK for VPC routing API.

This commit is contained in:
James Yonan 2016-11-09 10:24:58 -08:00 committed by Lev Stipakov
parent d534049f5e
commit 86480f71f5
No known key found for this signature in database
GPG Key ID: 88670BE258B9C258

33
openvpn/aws/awscreds.hpp Normal file
View File

@ -0,0 +1,33 @@
//
// OpenVPN
//
// Copyright (C) 2012-2016 OpenVPN Technologies, Inc. All rights reserved.
//
// AWS credentials
#ifndef OPENVPN_AWS_AWSCREDS_H
#define OPENVPN_AWS_AWSCREDS_H
#include <string>
namespace openvpn {
namespace AWS {
struct Creds
{
Creds() {}
Creds(std::string access_key_arg,
std::string secret_key_arg)
: access_key(std::move(access_key_arg)),
secret_key(std::move(secret_key_arg))
{
}
std::string access_key;
std::string secret_key;
};
}
}
#endif