AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
CapacityProviderStrategyItem.h
1
6#pragma once
7#include <aws/ecs/ECS_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace ECS
22{
23namespace Model
24{
25
59 {
60 public:
61 AWS_ECS_API CapacityProviderStrategyItem() = default;
65
66
68
71 inline const Aws::String& GetCapacityProvider() const { return m_capacityProvider; }
72 inline bool CapacityProviderHasBeenSet() const { return m_capacityProviderHasBeenSet; }
73 template<typename CapacityProviderT = Aws::String>
74 void SetCapacityProvider(CapacityProviderT&& value) { m_capacityProviderHasBeenSet = true; m_capacityProvider = std::forward<CapacityProviderT>(value); }
75 template<typename CapacityProviderT = Aws::String>
76 CapacityProviderStrategyItem& WithCapacityProvider(CapacityProviderT&& value) { SetCapacityProvider(std::forward<CapacityProviderT>(value)); return *this;}
78
80
100 inline int GetWeight() const { return m_weight; }
101 inline bool WeightHasBeenSet() const { return m_weightHasBeenSet; }
102 inline void SetWeight(int value) { m_weightHasBeenSet = true; m_weight = value; }
103 inline CapacityProviderStrategyItem& WithWeight(int value) { SetWeight(value); return *this;}
105
107
113 inline int GetBase() const { return m_base; }
114 inline bool BaseHasBeenSet() const { return m_baseHasBeenSet; }
115 inline void SetBase(int value) { m_baseHasBeenSet = true; m_base = value; }
116 inline CapacityProviderStrategyItem& WithBase(int value) { SetBase(value); return *this;}
118 private:
119
120 Aws::String m_capacityProvider;
121 bool m_capacityProviderHasBeenSet = false;
122
123 int m_weight{0};
124 bool m_weightHasBeenSet = false;
125
126 int m_base{0};
127 bool m_baseHasBeenSet = false;
128 };
129
130} // namespace Model
131} // namespace ECS
132} // namespace Aws
CapacityProviderStrategyItem & WithCapacityProvider(CapacityProviderT &&value)
AWS_ECS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_ECS_API CapacityProviderStrategyItem()=default
AWS_ECS_API CapacityProviderStrategyItem & operator=(Aws::Utils::Json::JsonView jsonValue)
CapacityProviderStrategyItem & WithWeight(int value)
AWS_ECS_API CapacityProviderStrategyItem(Aws::Utils::Json::JsonView jsonValue)
CapacityProviderStrategyItem & WithBase(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue