AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
OnEnterLifecycle.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/Event.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 OnEnterLifecycle() = default;
37 AWS_IOTEVENTS_API OnEnterLifecycle(Aws::Utils::Json::JsonView jsonValue);
39 AWS_IOTEVENTS_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
47 inline const Aws::Vector<Event>& GetEvents() const { return m_events; }
48 inline bool EventsHasBeenSet() const { return m_eventsHasBeenSet; }
49 template<typename EventsT = Aws::Vector<Event>>
50 void SetEvents(EventsT&& value) { m_eventsHasBeenSet = true; m_events = std::forward<EventsT>(value); }
51 template<typename EventsT = Aws::Vector<Event>>
52 OnEnterLifecycle& WithEvents(EventsT&& value) { SetEvents(std::forward<EventsT>(value)); return *this;}
53 template<typename EventsT = Event>
54 OnEnterLifecycle& AddEvents(EventsT&& value) { m_eventsHasBeenSet = true; m_events.emplace_back(std::forward<EventsT>(value)); return *this; }
56 private:
57
58 Aws::Vector<Event> m_events;
59 bool m_eventsHasBeenSet = false;
60 };
61
62} // namespace Model
63} // namespace IoTEvents
64} // namespace Aws
AWS_IOTEVENTS_API OnEnterLifecycle & operator=(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< Event > & GetEvents() const
OnEnterLifecycle & WithEvents(EventsT &&value)
AWS_IOTEVENTS_API OnEnterLifecycle(Aws::Utils::Json::JsonView jsonValue)
AWS_IOTEVENTS_API Aws::Utils::Json::JsonValue Jsonize() const
OnEnterLifecycle & AddEvents(EventsT &&value)
AWS_IOTEVENTS_API OnEnterLifecycle()=default
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue