/** * 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 ECS { namespace Model { class AWS_ECS_API DeleteAccountSettingResult { public: DeleteAccountSettingResult(); DeleteAccountSettingResult(const Aws::AmazonWebServiceResult& result); DeleteAccountSettingResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The account setting for the specified principal ARN.

*/ inline const Setting& GetSetting() const{ return m_setting; } /** *

The account setting for the specified principal ARN.

*/ inline void SetSetting(const Setting& value) { m_setting = value; } /** *

The account setting for the specified principal ARN.

*/ inline void SetSetting(Setting&& value) { m_setting = std::move(value); } /** *

The account setting for the specified principal ARN.

*/ inline DeleteAccountSettingResult& WithSetting(const Setting& value) { SetSetting(value); return *this;} /** *

The account setting for the specified principal ARN.

*/ inline DeleteAccountSettingResult& WithSetting(Setting&& value) { SetSetting(std::move(value)); return *this;} private: Setting m_setting; }; } // namespace Model } // namespace ECS } // namespace Aws