AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeAuthenticationProfilesResult.h
1
6#pragma once
7#include <aws/redshift/Redshift_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/redshift/model/ResponseMetadata.h>
10#include <aws/redshift/model/AuthenticationProfile.h>
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
38
41 inline const Aws::Vector<AuthenticationProfile>& GetAuthenticationProfiles() const{ return m_authenticationProfiles; }
42 inline void SetAuthenticationProfiles(const Aws::Vector<AuthenticationProfile>& value) { m_authenticationProfiles = value; }
43 inline void SetAuthenticationProfiles(Aws::Vector<AuthenticationProfile>&& value) { m_authenticationProfiles = std::move(value); }
46 inline DescribeAuthenticationProfilesResult& AddAuthenticationProfiles(const AuthenticationProfile& value) { m_authenticationProfiles.push_back(value); return *this; }
47 inline DescribeAuthenticationProfilesResult& AddAuthenticationProfiles(AuthenticationProfile&& value) { m_authenticationProfiles.push_back(std::move(value)); return *this; }
49
51
52 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
53 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
54 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
58 private:
59
60 Aws::Vector<AuthenticationProfile> m_authenticationProfiles;
61
62 ResponseMetadata m_responseMetadata;
63 };
64
65} // namespace Model
66} // namespace Redshift
67} // namespace Aws
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
Aws::Utils::Xml::XmlDocument XmlDocument