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