AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateTopicRuleRequest.h
1
6#pragma once
7#include <aws/iot/IoT_EXPORTS.h>
8#include <aws/iot/IoTRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/iot/model/TopicRulePayload.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoT
16{
17namespace Model
18{
19
26 {
27 public:
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "CreateTopicRule"; }
35
36 AWS_IOT_API Aws::String SerializePayload() const override;
37
39
40
42
45 inline const Aws::String& GetRuleName() const{ return m_ruleName; }
46 inline bool RuleNameHasBeenSet() const { return m_ruleNameHasBeenSet; }
47 inline void SetRuleName(const Aws::String& value) { m_ruleNameHasBeenSet = true; m_ruleName = value; }
48 inline void SetRuleName(Aws::String&& value) { m_ruleNameHasBeenSet = true; m_ruleName = std::move(value); }
49 inline void SetRuleName(const char* value) { m_ruleNameHasBeenSet = true; m_ruleName.assign(value); }
50 inline CreateTopicRuleRequest& WithRuleName(const Aws::String& value) { SetRuleName(value); return *this;}
51 inline CreateTopicRuleRequest& WithRuleName(Aws::String&& value) { SetRuleName(std::move(value)); return *this;}
52 inline CreateTopicRuleRequest& WithRuleName(const char* value) { SetRuleName(value); return *this;}
54
56
59 inline const TopicRulePayload& GetTopicRulePayload() const{ return m_topicRulePayload; }
60 inline bool TopicRulePayloadHasBeenSet() const { return m_topicRulePayloadHasBeenSet; }
61 inline void SetTopicRulePayload(const TopicRulePayload& value) { m_topicRulePayloadHasBeenSet = true; m_topicRulePayload = value; }
62 inline void SetTopicRulePayload(TopicRulePayload&& value) { m_topicRulePayloadHasBeenSet = true; m_topicRulePayload = std::move(value); }
64 inline CreateTopicRuleRequest& WithTopicRulePayload(TopicRulePayload&& value) { SetTopicRulePayload(std::move(value)); return *this;}
66
68
75 inline const Aws::String& GetTags() const{ return m_tags; }
76 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
77 inline void SetTags(const Aws::String& value) { m_tagsHasBeenSet = true; m_tags = value; }
78 inline void SetTags(Aws::String&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
79 inline void SetTags(const char* value) { m_tagsHasBeenSet = true; m_tags.assign(value); }
80 inline CreateTopicRuleRequest& WithTags(const Aws::String& value) { SetTags(value); return *this;}
81 inline CreateTopicRuleRequest& WithTags(Aws::String&& value) { SetTags(std::move(value)); return *this;}
82 inline CreateTopicRuleRequest& WithTags(const char* value) { SetTags(value); return *this;}
84 private:
85
86 Aws::String m_ruleName;
87 bool m_ruleNameHasBeenSet = false;
88
89 TopicRulePayload m_topicRulePayload;
90 bool m_topicRulePayloadHasBeenSet = false;
91
92 Aws::String m_tags;
93 bool m_tagsHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace IoT
98} // namespace Aws
CreateTopicRuleRequest & WithRuleName(Aws::String &&value)
AWS_IOT_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
CreateTopicRuleRequest & WithTopicRulePayload(const TopicRulePayload &value)
CreateTopicRuleRequest & WithRuleName(const Aws::String &value)
const TopicRulePayload & GetTopicRulePayload() const
CreateTopicRuleRequest & WithRuleName(const char *value)
CreateTopicRuleRequest & WithTags(Aws::String &&value)
CreateTopicRuleRequest & WithTags(const char *value)
void SetRuleName(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
CreateTopicRuleRequest & WithTopicRulePayload(TopicRulePayload &&value)
AWS_IOT_API Aws::String SerializePayload() const override
CreateTopicRuleRequest & WithTags(const Aws::String &value)
void SetTopicRulePayload(const TopicRulePayload &value)
void SetTopicRulePayload(TopicRulePayload &&value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String