/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the status of an Elastic Graphics accelerator.See
* Also:
AWS
* API Reference
The health status.
*/ inline const ElasticGpuStatus& GetStatus() const{ return m_status; } /** *The health status.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *The health status.
*/ inline void SetStatus(const ElasticGpuStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *The health status.
*/ inline void SetStatus(ElasticGpuStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *The health status.
*/ inline ElasticGpuHealth& WithStatus(const ElasticGpuStatus& value) { SetStatus(value); return *this;} /** *The health status.
*/ inline ElasticGpuHealth& WithStatus(ElasticGpuStatus&& value) { SetStatus(std::move(value)); return *this;} private: ElasticGpuStatus m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws