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

Information about the path.

*/ inline const NetworkInsightsPath& GetNetworkInsightsPath() const{ return m_networkInsightsPath; } /** *

Information about the path.

*/ inline void SetNetworkInsightsPath(const NetworkInsightsPath& value) { m_networkInsightsPath = value; } /** *

Information about the path.

*/ inline void SetNetworkInsightsPath(NetworkInsightsPath&& value) { m_networkInsightsPath = std::move(value); } /** *

Information about the path.

*/ inline CreateNetworkInsightsPathResponse& WithNetworkInsightsPath(const NetworkInsightsPath& value) { SetNetworkInsightsPath(value); return *this;} /** *

Information about the path.

*/ inline CreateNetworkInsightsPathResponse& WithNetworkInsightsPath(NetworkInsightsPath&& value) { SetNetworkInsightsPath(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 CreateNetworkInsightsPathResponse& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;} inline CreateNetworkInsightsPathResponse& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;} private: NetworkInsightsPath m_networkInsightsPath; ResponseMetadata m_responseMetadata; }; } // namespace Model } // namespace EC2 } // namespace Aws