AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
AlarmEventActions.h
1
6#pragma once
7#include <aws/iotevents/IoTEvents_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/iotevents/model/AlarmAction.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace IoTEvents
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_IOTEVENTS_API AlarmEventActions() = default;
37 AWS_IOTEVENTS_API AlarmEventActions(Aws::Utils::Json::JsonView jsonValue);
39 AWS_IOTEVENTS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::Vector<AlarmAction>& GetAlarmActions() const { return m_alarmActions; }
48 inline bool AlarmActionsHasBeenSet() const { return m_alarmActionsHasBeenSet; }
49 template<typename AlarmActionsT = Aws::Vector<AlarmAction>>
50 void SetAlarmActions(AlarmActionsT&& value) { m_alarmActionsHasBeenSet = true; m_alarmActions = std::forward<AlarmActionsT>(value); }
51 template<typename AlarmActionsT = Aws::Vector<AlarmAction>>
52 AlarmEventActions& WithAlarmActions(AlarmActionsT&& value) { SetAlarmActions(std::forward<AlarmActionsT>(value)); return *this;}
53 template<typename AlarmActionsT = AlarmAction>
54 AlarmEventActions& AddAlarmActions(AlarmActionsT&& value) { m_alarmActionsHasBeenSet = true; m_alarmActions.emplace_back(std::forward<AlarmActionsT>(value)); return *this; }
56 private:
57
58 Aws::Vector<AlarmAction> m_alarmActions;
59 bool m_alarmActionsHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace IoTEvents
64} // namespace Aws
AWS_IOTEVENTS_API AlarmEventActions & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< AlarmAction > & GetAlarmActions() const
AWS_IOTEVENTS_API AlarmEventActions(Aws::Utils::Json::JsonView jsonValue)
AWS_IOTEVENTS_API Aws::Utils::Json::JsonValue Jsonize() const
void SetAlarmActions(AlarmActionsT &&value)
AWS_IOTEVENTS_API AlarmEventActions()=default
AlarmEventActions & WithAlarmActions(AlarmActionsT &&value)
AlarmEventActions & AddAlarmActions(AlarmActionsT &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue