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