AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
BatchDisableAlarmRequest.h
1
6#pragma once
7#include <aws/iotevents-data/IoTEventsData_EXPORTS.h>
8#include <aws/iotevents-data/IoTEventsDataRequest.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/iotevents-data/model/DisableAlarmActionRequest.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoTEventsData
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IOTEVENTSDATA_API BatchDisableAlarmRequest();
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "BatchDisableAlarm"; }
32
33 AWS_IOTEVENTSDATA_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::Vector<DisableAlarmActionRequest>& GetDisableActionRequests() const{ return m_disableActionRequests; }
42 inline bool DisableActionRequestsHasBeenSet() const { return m_disableActionRequestsHasBeenSet; }
43 inline void SetDisableActionRequests(const Aws::Vector<DisableAlarmActionRequest>& value) { m_disableActionRequestsHasBeenSet = true; m_disableActionRequests = value; }
44 inline void SetDisableActionRequests(Aws::Vector<DisableAlarmActionRequest>&& value) { m_disableActionRequestsHasBeenSet = true; m_disableActionRequests = std::move(value); }
47 inline BatchDisableAlarmRequest& AddDisableActionRequests(const DisableAlarmActionRequest& value) { m_disableActionRequestsHasBeenSet = true; m_disableActionRequests.push_back(value); return *this; }
48 inline BatchDisableAlarmRequest& AddDisableActionRequests(DisableAlarmActionRequest&& value) { m_disableActionRequestsHasBeenSet = true; m_disableActionRequests.push_back(std::move(value)); return *this; }
50 private:
51
52 Aws::Vector<DisableAlarmActionRequest> m_disableActionRequests;
53 bool m_disableActionRequestsHasBeenSet = false;
54 };
55
56} // namespace Model
57} // namespace IoTEventsData
58} // namespace Aws
BatchDisableAlarmRequest & AddDisableActionRequests(const DisableAlarmActionRequest &value)
virtual const char * GetServiceRequestName() const override
BatchDisableAlarmRequest & WithDisableActionRequests(Aws::Vector< DisableAlarmActionRequest > &&value)
BatchDisableAlarmRequest & WithDisableActionRequests(const Aws::Vector< DisableAlarmActionRequest > &value)
void SetDisableActionRequests(Aws::Vector< DisableAlarmActionRequest > &&value)
BatchDisableAlarmRequest & AddDisableActionRequests(DisableAlarmActionRequest &&value)
AWS_IOTEVENTSDATA_API Aws::String SerializePayload() const override
void SetDisableActionRequests(const Aws::Vector< DisableAlarmActionRequest > &value)
const Aws::Vector< DisableAlarmActionRequest > & GetDisableActionRequests() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector