/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Specifies the status of Auto-Tune options for the specified Elasticsearch
* domain.See Also:
AWS
* API Reference
Specifies Auto-Tune options for the specified Elasticsearch domain.
*/ inline const AutoTuneOptions& GetOptions() const{ return m_options; } /** *Specifies Auto-Tune options for the specified Elasticsearch domain.
*/ inline bool OptionsHasBeenSet() const { return m_optionsHasBeenSet; } /** *Specifies Auto-Tune options for the specified Elasticsearch domain.
*/ inline void SetOptions(const AutoTuneOptions& value) { m_optionsHasBeenSet = true; m_options = value; } /** *Specifies Auto-Tune options for the specified Elasticsearch domain.
*/ inline void SetOptions(AutoTuneOptions&& value) { m_optionsHasBeenSet = true; m_options = std::move(value); } /** *Specifies Auto-Tune options for the specified Elasticsearch domain.
*/ inline AutoTuneOptionsStatus& WithOptions(const AutoTuneOptions& value) { SetOptions(value); return *this;} /** *Specifies Auto-Tune options for the specified Elasticsearch domain.
*/ inline AutoTuneOptionsStatus& WithOptions(AutoTuneOptions&& value) { SetOptions(std::move(value)); return *this;} /** *Specifies Status of the Auto-Tune options for the specified Elasticsearch * domain.
*/ inline const AutoTuneStatus& GetStatus() const{ return m_status; } /** *Specifies Status of the Auto-Tune options for the specified Elasticsearch * domain.
*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *Specifies Status of the Auto-Tune options for the specified Elasticsearch * domain.
*/ inline void SetStatus(const AutoTuneStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *Specifies Status of the Auto-Tune options for the specified Elasticsearch * domain.
*/ inline void SetStatus(AutoTuneStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *Specifies Status of the Auto-Tune options for the specified Elasticsearch * domain.
*/ inline AutoTuneOptionsStatus& WithStatus(const AutoTuneStatus& value) { SetStatus(value); return *this;} /** *Specifies Status of the Auto-Tune options for the specified Elasticsearch * domain.
*/ inline AutoTuneOptionsStatus& WithStatus(AutoTuneStatus&& value) { SetStatus(std::move(value)); return *this;} private: AutoTuneOptions m_options; bool m_optionsHasBeenSet = false; AutoTuneStatus m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace ElasticsearchService } // namespace Aws