AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
WorkerCapabilities.h
1
6#pragma once
7#include <aws/deadline/Deadline_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/deadline/model/WorkerAmountCapability.h>
10#include <aws/deadline/model/WorkerAttributeCapability.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Json
18{
19 class JsonValue;
20 class JsonView;
21} // namespace Json
22} // namespace Utils
23namespace deadline
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_DEADLINE_API WorkerCapabilities() = default;
39 AWS_DEADLINE_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::Vector<WorkerAmountCapability>& GetAmounts() const { return m_amounts; }
47 inline bool AmountsHasBeenSet() const { return m_amountsHasBeenSet; }
48 template<typename AmountsT = Aws::Vector<WorkerAmountCapability>>
49 void SetAmounts(AmountsT&& value) { m_amountsHasBeenSet = true; m_amounts = std::forward<AmountsT>(value); }
50 template<typename AmountsT = Aws::Vector<WorkerAmountCapability>>
51 WorkerCapabilities& WithAmounts(AmountsT&& value) { SetAmounts(std::forward<AmountsT>(value)); return *this;}
52 template<typename AmountsT = WorkerAmountCapability>
53 WorkerCapabilities& AddAmounts(AmountsT&& value) { m_amountsHasBeenSet = true; m_amounts.emplace_back(std::forward<AmountsT>(value)); return *this; }
55
57
60 inline const Aws::Vector<WorkerAttributeCapability>& GetAttributes() const { return m_attributes; }
61 inline bool AttributesHasBeenSet() const { return m_attributesHasBeenSet; }
62 template<typename AttributesT = Aws::Vector<WorkerAttributeCapability>>
63 void SetAttributes(AttributesT&& value) { m_attributesHasBeenSet = true; m_attributes = std::forward<AttributesT>(value); }
64 template<typename AttributesT = Aws::Vector<WorkerAttributeCapability>>
65 WorkerCapabilities& WithAttributes(AttributesT&& value) { SetAttributes(std::forward<AttributesT>(value)); return *this;}
66 template<typename AttributesT = WorkerAttributeCapability>
67 WorkerCapabilities& AddAttributes(AttributesT&& value) { m_attributesHasBeenSet = true; m_attributes.emplace_back(std::forward<AttributesT>(value)); return *this; }
69 private:
70
72 bool m_amountsHasBeenSet = false;
73
75 bool m_attributesHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace deadline
80} // namespace Aws
AWS_DEADLINE_API WorkerCapabilities()=default
const Aws::Vector< WorkerAttributeCapability > & GetAttributes() const
AWS_DEADLINE_API WorkerCapabilities(Aws::Utils::Json::JsonView jsonValue)
AWS_DEADLINE_API WorkerCapabilities & operator=(Aws::Utils::Json::JsonView jsonValue)
WorkerCapabilities & AddAmounts(AmountsT &&value)
WorkerCapabilities & AddAttributes(AttributesT &&value)
const Aws::Vector< WorkerAmountCapability > & GetAmounts() const
WorkerCapabilities & WithAmounts(AmountsT &&value)
WorkerCapabilities & WithAttributes(AttributesT &&value)
AWS_DEADLINE_API Aws::Utils::Json::JsonValue Jsonize() const
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue