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