/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the output of CreateVpnConnection.See Also:
AWS
* API Reference
Information about the VPN connection.
*/ inline const VpnConnection& GetVpnConnection() const{ return m_vpnConnection; } /** *Information about the VPN connection.
*/ inline void SetVpnConnection(const VpnConnection& value) { m_vpnConnection = value; } /** *Information about the VPN connection.
*/ inline void SetVpnConnection(VpnConnection&& value) { m_vpnConnection = std::move(value); } /** *Information about the VPN connection.
*/ inline CreateVpnConnectionResponse& WithVpnConnection(const VpnConnection& value) { SetVpnConnection(value); return *this;} /** *Information about the VPN connection.
*/ inline CreateVpnConnectionResponse& WithVpnConnection(VpnConnection&& value) { SetVpnConnection(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 CreateVpnConnectionResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CreateVpnConnectionResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: VpnConnection m_vpnConnection; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws