/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents the current status of the virtual
* node.See Also:
AWS
* API Reference
The current status of the virtual node.
*/ inline const VirtualNodeStatusCode& GetStatus() const{ return m_status; } /** *The current status of the virtual node.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The current status of the virtual node.
*/ inline void SetStatus(const VirtualNodeStatusCode& value) { m_statusHasBeenSet = true; m_status = value; } /** *The current status of the virtual node.
*/ inline void SetStatus(VirtualNodeStatusCode&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The current status of the virtual node.
*/ inline VirtualNodeStatus& WithStatus(const VirtualNodeStatusCode& value) { SetStatus(value); return *this;} /** *The current status of the virtual node.
*/ inline VirtualNodeStatus& WithStatus(VirtualNodeStatusCode&& value) { SetStatus(std::move(value)); return *this;} private: VirtualNodeStatusCode m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws