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/scheduler/Scheduler_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 Scheduler
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_SCHEDULER_API CapacityProviderStrategyItem() = default;
37 AWS_SCHEDULER_API Aws::Utils::Json::JsonValue Jsonize() const;
38
39
41
47 inline int GetBase() const { return m_base; }
48 inline bool BaseHasBeenSet() const { return m_baseHasBeenSet; }
49 inline void SetBase(int value) { m_baseHasBeenSet = true; m_base = value; }
50 inline CapacityProviderStrategyItem& WithBase(int value) { SetBase(value); return *this;}
52
54
57 inline const Aws::String& GetCapacityProvider() const { return m_capacityProvider; }
58 inline bool CapacityProviderHasBeenSet() const { return m_capacityProviderHasBeenSet; }
59 template<typename CapacityProviderT = Aws::String>
60 void SetCapacityProvider(CapacityProviderT&& value) { m_capacityProviderHasBeenSet = true; m_capacityProvider = std::forward<CapacityProviderT>(value); }
61 template<typename CapacityProviderT = Aws::String>
62 CapacityProviderStrategyItem& WithCapacityProvider(CapacityProviderT&& value) { SetCapacityProvider(std::forward<CapacityProviderT>(value)); return *this;}
64
66
71 inline int GetWeight() const { return m_weight; }
72 inline bool WeightHasBeenSet() const { return m_weightHasBeenSet; }
73 inline void SetWeight(int value) { m_weightHasBeenSet = true; m_weight = value; }
74 inline CapacityProviderStrategyItem& WithWeight(int value) { SetWeight(value); return *this;}
76 private:
77
78 int m_base{0};
79 bool m_baseHasBeenSet = false;
80
81 Aws::String m_capacityProvider;
82 bool m_capacityProviderHasBeenSet = false;
83
84 int m_weight{0};
85 bool m_weightHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace Scheduler
90} // namespace Aws
AWS_SCHEDULER_API CapacityProviderStrategyItem(Aws::Utils::Json::JsonView jsonValue)
AWS_SCHEDULER_API CapacityProviderStrategyItem & operator=(Aws::Utils::Json::JsonView jsonValue)
CapacityProviderStrategyItem & WithCapacityProvider(CapacityProviderT &&value)
AWS_SCHEDULER_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_SCHEDULER_API CapacityProviderStrategyItem()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue