AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
BatchPutMessageRequest.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/Message.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoTEventsData
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IOTEVENTSDATA_API BatchPutMessageRequest() = default;
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 "BatchPutMessage"; }
32
33 AWS_IOTEVENTSDATA_API Aws::String SerializePayload() const override;
34
35
37
41 inline const Aws::Vector<Message>& GetMessages() const { return m_messages; }
42 inline bool MessagesHasBeenSet() const { return m_messagesHasBeenSet; }
43 template<typename MessagesT = Aws::Vector<Message>>
44 void SetMessages(MessagesT&& value) { m_messagesHasBeenSet = true; m_messages = std::forward<MessagesT>(value); }
45 template<typename MessagesT = Aws::Vector<Message>>
46 BatchPutMessageRequest& WithMessages(MessagesT&& value) { SetMessages(std::forward<MessagesT>(value)); return *this;}
47 template<typename MessagesT = Message>
48 BatchPutMessageRequest& AddMessages(MessagesT&& value) { m_messagesHasBeenSet = true; m_messages.emplace_back(std::forward<MessagesT>(value)); return *this; }
50 private:
51
52 Aws::Vector<Message> m_messages;
53 bool m_messagesHasBeenSet = false;
54 };
55
56} // namespace Model
57} // namespace IoTEventsData
58} // namespace Aws
BatchPutMessageRequest & WithMessages(MessagesT &&value)
AWS_IOTEVENTSDATA_API BatchPutMessageRequest()=default
BatchPutMessageRequest & AddMessages(MessagesT &&value)
const Aws::Vector< Message > & GetMessages() const
virtual const char * GetServiceRequestName() const override
AWS_IOTEVENTSDATA_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector