/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace AppMesh { namespace Model { /** *

An object that represents the status of a virtual service.

See * Also:

AWS * API Reference

*/ class VirtualServiceStatus { public: AWS_APPMESH_API VirtualServiceStatus(); AWS_APPMESH_API VirtualServiceStatus(Aws::Utils::Json::JsonView jsonValue); AWS_APPMESH_API VirtualServiceStatus& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_APPMESH_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The current status of the virtual service.

*/ inline const VirtualServiceStatusCode& GetStatus() const{ return m_status; } /** *

The current status of the virtual service.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The current status of the virtual service.

*/ inline void SetStatus(const VirtualServiceStatusCode& value) { m_statusHasBeenSet = true; m_status = value; } /** *

The current status of the virtual service.

*/ inline void SetStatus(VirtualServiceStatusCode&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

The current status of the virtual service.

*/ inline VirtualServiceStatus& WithStatus(const VirtualServiceStatusCode& value) { SetStatus(value); return *this;} /** *

The current status of the virtual service.

*/ inline VirtualServiceStatus& WithStatus(VirtualServiceStatusCode&& value) { SetStatus(std::move(value)); return *this;} private: VirtualServiceStatusCode m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws