1 /**
2  * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3  * SPDX-License-Identifier: Apache-2.0.
4  */
5 
6 #pragma once
7 #include <aws/ecs/ECS_EXPORTS.h>
8 #include <aws/ecs/model/Setting.h>
9 #include <utility>
10 
11 namespace Aws
12 {
13 template<typename RESULT_TYPE>
14 class AmazonWebServiceResult;
15 
16 namespace Utils
17 {
18 namespace Json
19 {
20   class JsonValue;
21 } // namespace Json
22 } // namespace Utils
23 namespace ECS
24 {
25 namespace Model
26 {
27   class AWS_ECS_API PutAccountSettingDefaultResult
28   {
29   public:
30     PutAccountSettingDefaultResult();
31     PutAccountSettingDefaultResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
32     PutAccountSettingDefaultResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
33 
34 
35     /**
36      * <p>The current setting for a resource.</p>
37      */
GetSetting()38     inline const Setting& GetSetting() const{ return m_setting; }
39 
40     /**
41      * <p>The current setting for a resource.</p>
42      */
SetSetting(const Setting & value)43     inline void SetSetting(const Setting& value) { m_setting = value; }
44 
45     /**
46      * <p>The current setting for a resource.</p>
47      */
SetSetting(Setting && value)48     inline void SetSetting(Setting&& value) { m_setting = std::move(value); }
49 
50     /**
51      * <p>The current setting for a resource.</p>
52      */
WithSetting(const Setting & value)53     inline PutAccountSettingDefaultResult& WithSetting(const Setting& value) { SetSetting(value); return *this;}
54 
55     /**
56      * <p>The current setting for a resource.</p>
57      */
WithSetting(Setting && value)58     inline PutAccountSettingDefaultResult& WithSetting(Setting&& value) { SetSetting(std::move(value)); return *this;}
59 
60   private:
61 
62     Setting m_setting;
63   };
64 
65 } // namespace Model
66 } // namespace ECS
67 } // namespace Aws
68