/** * 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 EC2 { namespace Model { class ExportClientVpnClientCertificateRevocationListResponse { public: AWS_EC2_API ExportClientVpnClientCertificateRevocationListResponse(); AWS_EC2_API ExportClientVpnClientCertificateRevocationListResponse(const Aws::AmazonWebServiceResult& result); AWS_EC2_API ExportClientVpnClientCertificateRevocationListResponse& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the client certificate revocation list.

*/ inline const Aws::String& GetCertificateRevocationList() const{ return m_certificateRevocationList; } /** *

Information about the client certificate revocation list.

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

Information about the client certificate revocation list.

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

Information about the client certificate revocation list.

*/ inline void SetCertificateRevocationList(const char* value) { m_certificateRevocationList.assign(value); } /** *

Information about the client certificate revocation list.

*/ inline ExportClientVpnClientCertificateRevocationListResponse& WithCertificateRevocationList(const Aws::String& value) { SetCertificateRevocationList(value); return *this;} /** *

Information about the client certificate revocation list.

*/ inline ExportClientVpnClientCertificateRevocationListResponse& WithCertificateRevocationList(Aws::String&& value) { SetCertificateRevocationList(std::move(value)); return *this;} /** *

Information about the client certificate revocation list.

*/ inline ExportClientVpnClientCertificateRevocationListResponse& WithCertificateRevocationList(const char* value) { SetCertificateRevocationList(value); return *this;} /** *

The current state of the client certificate revocation list.

*/ inline const ClientCertificateRevocationListStatus& GetStatus() const{ return m_status; } /** *

The current state of the client certificate revocation list.

*/ inline void SetStatus(const ClientCertificateRevocationListStatus& value) { m_status = value; } /** *

The current state of the client certificate revocation list.

*/ inline void SetStatus(ClientCertificateRevocationListStatus&& value) { m_status = std::move(value); } /** *

The current state of the client certificate revocation list.

*/ inline ExportClientVpnClientCertificateRevocationListResponse& WithStatus(const ClientCertificateRevocationListStatus& value) { SetStatus(value); return *this;} /** *

The current state of the client certificate revocation list.

*/ inline ExportClientVpnClientCertificateRevocationListResponse& WithStatus(ClientCertificateRevocationListStatus&& value) { SetStatus(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 ExportClientVpnClientCertificateRevocationListResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline ExportClientVpnClientCertificateRevocationListResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: Aws::String m_certificateRevocationList; ClientCertificateRevocationListStatus m_status; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws