/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Options for configuring service software updates for a domain.See
* Also:
AWS
* API Reference
Whether automatic service software updates are enabled for the domain.
*/ inline bool GetAutoSoftwareUpdateEnabled() const{ return m_autoSoftwareUpdateEnabled; } /** *Whether automatic service software updates are enabled for the domain.
*/ inline bool AutoSoftwareUpdateEnabledHasBeenSet() const { return m_autoSoftwareUpdateEnabledHasBeenSet; } /** *Whether automatic service software updates are enabled for the domain.
*/ inline void SetAutoSoftwareUpdateEnabled(bool value) { m_autoSoftwareUpdateEnabledHasBeenSet = true; m_autoSoftwareUpdateEnabled = value; } /** *Whether automatic service software updates are enabled for the domain.
*/ inline SoftwareUpdateOptions& WithAutoSoftwareUpdateEnabled(bool value) { SetAutoSoftwareUpdateEnabled(value); return *this;} private: bool m_autoSoftwareUpdateEnabled; bool m_autoSoftwareUpdateEnabledHasBeenSet = false; }; } // namespace Model } // namespace OpenSearchService } // namespace Aws