AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
ModifyAuthenticationProfileResult.h
Go to the documentation of this file.
1
6#pragma once
10#include <utility>
11
12namespace Aws
13{
14template<typename RESULT_TYPE>
15class AmazonWebServiceResult;
16
17namespace Utils
18{
19namespace Xml
20{
21 class XmlDocument;
22} // namespace Xml
23} // namespace Utils
24namespace Redshift
25{
26namespace Model
27{
29 {
30 public:
34
35
39 inline const Aws::String& GetAuthenticationProfileName() const{ return m_authenticationProfileName; }
40
44 inline void SetAuthenticationProfileName(const Aws::String& value) { m_authenticationProfileName = value; }
45
49 inline void SetAuthenticationProfileName(Aws::String&& value) { m_authenticationProfileName = std::move(value); }
50
54 inline void SetAuthenticationProfileName(const char* value) { m_authenticationProfileName.assign(value); }
55
60
65
70
71
75 inline const Aws::String& GetAuthenticationProfileContent() const{ return m_authenticationProfileContent; }
76
80 inline void SetAuthenticationProfileContent(const Aws::String& value) { m_authenticationProfileContent = value; }
81
85 inline void SetAuthenticationProfileContent(Aws::String&& value) { m_authenticationProfileContent = std::move(value); }
86
90 inline void SetAuthenticationProfileContent(const char* value) { m_authenticationProfileContent.assign(value); }
91
96
101
106
107
108
109 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
110
111
112 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
113
114
115 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
116
117
119
120
122
123 private:
124
125 Aws::String m_authenticationProfileName;
126
127 Aws::String m_authenticationProfileContent;
128
129 ResponseMetadata m_responseMetadata;
130 };
131
132} // namespace Model
133} // namespace Redshift
134} // namespace Aws
#define AWS_REDSHIFT_API
AWS_REDSHIFT_API ModifyAuthenticationProfileResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ModifyAuthenticationProfileResult & WithAuthenticationProfileContent(const Aws::String &value)
ModifyAuthenticationProfileResult & WithAuthenticationProfileName(const Aws::String &value)
AWS_REDSHIFT_API ModifyAuthenticationProfileResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ModifyAuthenticationProfileResult & WithAuthenticationProfileContent(const char *value)
ModifyAuthenticationProfileResult & WithAuthenticationProfileContent(Aws::String &&value)
ModifyAuthenticationProfileResult & WithAuthenticationProfileName(const char *value)
ModifyAuthenticationProfileResult & WithResponseMetadata(ResponseMetadata &&value)
ModifyAuthenticationProfileResult & WithResponseMetadata(const ResponseMetadata &value)
ModifyAuthenticationProfileResult & WithAuthenticationProfileName(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String