/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace AppMesh { namespace Model { /** *

See Also:

AWS * API Reference

*/ class AWS_APPMESH_API CreateVirtualNodeResult { public: CreateVirtualNodeResult(); CreateVirtualNodeResult(const Aws::AmazonWebServiceResult& result); CreateVirtualNodeResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The full description of your virtual node following the create call.

*/ inline const VirtualNodeData& GetVirtualNode() const{ return m_virtualNode; } /** *

The full description of your virtual node following the create call.

*/ inline void SetVirtualNode(const VirtualNodeData& value) { m_virtualNode = value; } /** *

The full description of your virtual node following the create call.

*/ inline void SetVirtualNode(VirtualNodeData&& value) { m_virtualNode = std::move(value); } /** *

The full description of your virtual node following the create call.

*/ inline CreateVirtualNodeResult& WithVirtualNode(const VirtualNodeData& value) { SetVirtualNode(value); return *this;} /** *

The full description of your virtual node following the create call.

*/ inline CreateVirtualNodeResult& WithVirtualNode(VirtualNodeData&& value) { SetVirtualNode(std::move(value)); return *this;} private: VirtualNodeData m_virtualNode; }; } // namespace Model } // namespace AppMesh } // namespace Aws