/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The query result body of the GetServiceSetting API action.See
* Also:
AWS
* API Reference
The query result of the current service setting.
*/ inline const ServiceSetting& GetServiceSetting() const{ return m_serviceSetting; } /** *The query result of the current service setting.
*/ inline void SetServiceSetting(const ServiceSetting& value) { m_serviceSetting = value; } /** *The query result of the current service setting.
*/ inline void SetServiceSetting(ServiceSetting&& value) { m_serviceSetting = std::move(value); } /** *The query result of the current service setting.
*/ inline GetServiceSettingResult& WithServiceSetting(const ServiceSetting& value) { SetServiceSetting(value); return *this;} /** *The query result of the current service setting.
*/ inline GetServiceSettingResult& WithServiceSetting(ServiceSetting&& value) { SetServiceSetting(std::move(value)); return *this;} private: ServiceSetting m_serviceSetting; }; } // namespace Model } // namespace SSM } // namespace Aws