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

Information about the security policies.

*/ inline const Aws::Vector& GetSslPolicies() const{ return m_sslPolicies; } /** *

Information about the security policies.

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

Information about the security policies.

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

Information about the security policies.

*/ inline DescribeSSLPoliciesResult& WithSslPolicies(const Aws::Vector& value) { SetSslPolicies(value); return *this;} /** *

Information about the security policies.

*/ inline DescribeSSLPoliciesResult& WithSslPolicies(Aws::Vector&& value) { SetSslPolicies(std::move(value)); return *this;} /** *

Information about the security policies.

*/ inline DescribeSSLPoliciesResult& AddSslPolicies(const SslPolicy& value) { m_sslPolicies.push_back(value); return *this; } /** *

Information about the security policies.

*/ inline DescribeSSLPoliciesResult& AddSslPolicies(SslPolicy&& value) { m_sslPolicies.push_back(std::move(value)); return *this; } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline const Aws::String& GetNextMarker() const{ return m_nextMarker; } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline void SetNextMarker(const Aws::String& value) { m_nextMarker = value; } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline void SetNextMarker(Aws::String&& value) { m_nextMarker = std::move(value); } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline void SetNextMarker(const char* value) { m_nextMarker.assign(value); } /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline DescribeSSLPoliciesResult& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline DescribeSSLPoliciesResult& WithNextMarker(Aws::String&& value) { SetNextMarker(std::move(value)); return *this;} /** *

If there are additional results, this is the marker for the next set of * results. Otherwise, this is null.

*/ inline DescribeSSLPoliciesResult& WithNextMarker(const char* value) { SetNextMarker(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 DescribeSSLPoliciesResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline DescribeSSLPoliciesResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::Vector m_sslPolicies; Aws::String m_nextMarker; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace ElasticLoadBalancingv2 } // namespace Aws