AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeAuthenticationProfilesResult.h
Go to the documentation of this file.
1
6#pragma once
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Xml
21{
22 class XmlDocument;
23} // namespace Xml
24} // namespace Utils
25namespace Redshift
26{
27namespace Model
28{
30 {
31 public:
35
36
40 inline const Aws::Vector<AuthenticationProfile>& GetAuthenticationProfiles() const{ return m_authenticationProfiles; }
41
45 inline void SetAuthenticationProfiles(const Aws::Vector<AuthenticationProfile>& value) { m_authenticationProfiles = value; }
46
50 inline void SetAuthenticationProfiles(Aws::Vector<AuthenticationProfile>&& value) { m_authenticationProfiles = std::move(value); }
51
56
61
65 inline DescribeAuthenticationProfilesResult& AddAuthenticationProfiles(const AuthenticationProfile& value) { m_authenticationProfiles.push_back(value); return *this; }
66
70 inline DescribeAuthenticationProfilesResult& AddAuthenticationProfiles(AuthenticationProfile&& value) { m_authenticationProfiles.push_back(std::move(value)); return *this; }
71
72
73
74 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
75
76
77 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
78
79
80 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
81
82
84
85
87
88 private:
89
90 Aws::Vector<AuthenticationProfile> m_authenticationProfiles;
91
92 ResponseMetadata m_responseMetadata;
93 };
94
95} // namespace Model
96} // namespace Redshift
97} // namespace Aws
#define AWS_REDSHIFT_API
void SetAuthenticationProfiles(const Aws::Vector< AuthenticationProfile > &value)
DescribeAuthenticationProfilesResult & AddAuthenticationProfiles(AuthenticationProfile &&value)
void SetAuthenticationProfiles(Aws::Vector< AuthenticationProfile > &&value)
DescribeAuthenticationProfilesResult & WithAuthenticationProfiles(Aws::Vector< AuthenticationProfile > &&value)
AWS_REDSHIFT_API DescribeAuthenticationProfilesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
AWS_REDSHIFT_API DescribeAuthenticationProfilesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeAuthenticationProfilesResult & AddAuthenticationProfiles(const AuthenticationProfile &value)
const Aws::Vector< AuthenticationProfile > & GetAuthenticationProfiles() const
DescribeAuthenticationProfilesResult & WithResponseMetadata(ResponseMetadata &&value)
DescribeAuthenticationProfilesResult & WithAuthenticationProfiles(const Aws::Vector< AuthenticationProfile > &value)
DescribeAuthenticationProfilesResult & WithResponseMetadata(const ResponseMetadata &value)
std::vector< T, Aws::Allocator< T > > Vector