/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The value for a given type of UpdateSettings
. See
* Also:
AWS API
* Reference
The OS update related settings.
*/ inline const OSUpdateSettings& GetOSUpdateSettings() const{ return m_oSUpdateSettings; } /** *The OS update related settings.
*/ inline bool OSUpdateSettingsHasBeenSet() const { return m_oSUpdateSettingsHasBeenSet; } /** *The OS update related settings.
*/ inline void SetOSUpdateSettings(const OSUpdateSettings& value) { m_oSUpdateSettingsHasBeenSet = true; m_oSUpdateSettings = value; } /** *The OS update related settings.
*/ inline void SetOSUpdateSettings(OSUpdateSettings&& value) { m_oSUpdateSettingsHasBeenSet = true; m_oSUpdateSettings = std::move(value); } /** *The OS update related settings.
*/ inline UpdateValue& WithOSUpdateSettings(const OSUpdateSettings& value) { SetOSUpdateSettings(value); return *this;} /** *The OS update related settings.
*/ inline UpdateValue& WithOSUpdateSettings(OSUpdateSettings&& value) { SetOSUpdateSettings(std::move(value)); return *this;} private: OSUpdateSettings m_oSUpdateSettings; bool m_oSUpdateSettingsHasBeenSet = false; }; } // namespace Model } // namespace DirectoryService } // namespace Aws