/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Xml { class XmlDocument; } // namespace Xml } // namespace Utils namespace Redshift { namespace Model { class DescribeAuthenticationProfilesResult { public: AWS_REDSHIFT_API DescribeAuthenticationProfilesResult(); AWS_REDSHIFT_API DescribeAuthenticationProfilesResult(const Aws::AmazonWebServiceResult& result); AWS_REDSHIFT_API DescribeAuthenticationProfilesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The list of authentication profiles.

*/ inline const Aws::Vector& GetAuthenticationProfiles() const{ return m_authenticationProfiles; } /** *

The list of authentication profiles.

*/ inline void SetAuthenticationProfiles(const Aws::Vector& value) { m_authenticationProfiles = value; } /** *

The list of authentication profiles.

*/ inline void SetAuthenticationProfiles(Aws::Vector&& value) { m_authenticationProfiles = std::move(value); } /** *

The list of authentication profiles.

*/ inline DescribeAuthenticationProfilesResult& WithAuthenticationProfiles(const Aws::Vector& value) { SetAuthenticationProfiles(value); return *this;} /** *

The list of authentication profiles.

*/ inline DescribeAuthenticationProfilesResult& WithAuthenticationProfiles(Aws::Vector&& value) { SetAuthenticationProfiles(std::move(value)); return *this;} /** *

The list of authentication profiles.

*/ inline DescribeAuthenticationProfilesResult& AddAuthenticationProfiles(const AuthenticationProfile& value) { m_authenticationProfiles.push_back(value); return *this; } /** *

The list of authentication profiles.

*/ inline DescribeAuthenticationProfilesResult& AddAuthenticationProfiles(AuthenticationProfile&& value) { m_authenticationProfiles.push_back(std::move(value)); return *this; } inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; } inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; } inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); } inline DescribeAuthenticationProfilesResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DescribeAuthenticationProfilesResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_authenticationProfiles; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace Redshift } // namespace Aws