libqtaws  0.1.0
UnofficialAWSlibraryforQt-InternalDocumentation
awsbasiccredentials_p.h
1 /*
2  Copyright 2013-2015 Paul Colby
3 
4  This file is part of libqtaws.
5 
6  Libqtaws is free software: you can redistribute it and/or modify
7  it under the terms of the GNU Lesser General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
10 
11  Libqtaws is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU Lesser General Public License for more details.
15 
16  You should have received a copy of the GNU Lesser General Public License
17  along with libqtaws. If not, see <http://www.gnu.org/licenses/>.
18 */
19 
20 #ifndef AWSBASICCREDENTIALS_P_H
21 #define AWSBASICCREDENTIALS_P_H
22 
23 #include "qtawsglobal.h"
24 
25 #include <QString>
26 
27 QTAWS_BEGIN_NAMESPACE
28 
30 
31 class QTAWS_EXPORT AwsBasicCredentialsPrivate {
32 
33 public:
34  QString accessKeyId; ///< AWS Access Key ID.
35  QString secretKey; ///< AWS Secret Access Key.
36  QString token; ///< AWS Security Token.
37 
39 
40 private:
41  Q_DECLARE_PUBLIC(AwsBasicCredentials)
42  AwsBasicCredentials * const q_ptr; ///< Internal q-pointer.
43 
44 };
45 
46 QTAWS_END_NAMESPACE
47 
48 #endif
Basic non-refreshable implementation of AwsAbstractCredentials.
QString token
AWS Security Token.
QString accessKeyId
AWS Access Key ID.
Private implementation for AwsBasicCredentials.
QString secretKey
AWS Secret Access Key.