/** * 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 UpdateVirtualNodeResult { public: UpdateVirtualNodeResult(); UpdateVirtualNodeResult(const Aws::AmazonWebServiceResult& result); UpdateVirtualNodeResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A full description of the virtual node that was updated.

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

A full description of the virtual node that was updated.

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

A full description of the virtual node that was updated.

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

A full description of the virtual node that was updated.

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

A full description of the virtual node that was updated.

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