/**
* 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 a route.See
* Also:
AWS
* API Reference
The current status for the route.
*/ inline const RouteStatusCode& GetStatus() const{ return m_status; } /** *The current status for the route.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The current status for the route.
*/ inline void SetStatus(const RouteStatusCode& value) { m_statusHasBeenSet = true; m_status = value; } /** *The current status for the route.
*/ inline void SetStatus(RouteStatusCode&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The current status for the route.
*/ inline RouteStatus& WithStatus(const RouteStatusCode& value) { SetStatus(value); return *this;} /** *The current status for the route.
*/ inline RouteStatus& WithStatus(RouteStatusCode&& value) { SetStatus(std::move(value)); return *this;} private: RouteStatusCode m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws