/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SSM { namespace Model { /** *

The result body of the ResetServiceSetting API action.

See * Also:

AWS * API Reference

*/ class AWS_SSM_API ResetServiceSettingResult { public: ResetServiceSettingResult(); ResetServiceSettingResult(const Aws::AmazonWebServiceResult& result); ResetServiceSettingResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The current, effective service setting after calling the ResetServiceSetting * API action.

*/ inline const ServiceSetting& GetServiceSetting() const{ return m_serviceSetting; } /** *

The current, effective service setting after calling the ResetServiceSetting * API action.

*/ inline void SetServiceSetting(const ServiceSetting& value) { m_serviceSetting = value; } /** *

The current, effective service setting after calling the ResetServiceSetting * API action.

*/ inline void SetServiceSetting(ServiceSetting&& value) { m_serviceSetting = std::move(value); } /** *

The current, effective service setting after calling the ResetServiceSetting * API action.

*/ inline ResetServiceSettingResult& WithServiceSetting(const ServiceSetting& value) { SetServiceSetting(value); return *this;} /** *

The current, effective service setting after calling the ResetServiceSetting * API action.

*/ inline ResetServiceSettingResult& WithServiceSetting(ServiceSetting&& value) { SetServiceSetting(std::move(value)); return *this;} private: ServiceSetting m_serviceSetting; }; } // namespace Model } // namespace SSM } // namespace Aws