/** * 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 the mesh resource.

See * Also:

AWS * API Reference

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

The current status.

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

The current status.

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

The current status.

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

The current status.

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

The current status.

*/ inline VirtualGatewayStatus& WithStatus(const VirtualGatewayStatusCode& value) { SetStatus(value); return *this;} /** *

The current status.

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