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