AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateNetworkAnalyzerConfigurationRequest.h
1
6#pragma once
7#include <aws/iotwireless/IoTWireless_EXPORTS.h>
8#include <aws/iotwireless/IoTWirelessRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/iotwireless/model/TraceContent.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/iotwireless/model/Tag.h>
13#include <utility>
14#include <aws/core/utils/UUID.h>
15
16namespace Aws
17{
18namespace IoTWireless
19{
20namespace Model
21{
22
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 "CreateNetworkAnalyzerConfiguration"; }
35
36 AWS_IOTWIRELESS_API Aws::String SerializePayload() const override;
37
38
40
41 inline const Aws::String& GetName() const{ return m_name; }
42 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
43 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
44 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
45 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
46 inline CreateNetworkAnalyzerConfigurationRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
47 inline CreateNetworkAnalyzerConfigurationRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
48 inline CreateNetworkAnalyzerConfigurationRequest& WithName(const char* value) { SetName(value); return *this;}
50
52
53 inline const TraceContent& GetTraceContent() const{ return m_traceContent; }
54 inline bool TraceContentHasBeenSet() const { return m_traceContentHasBeenSet; }
55 inline void SetTraceContent(const TraceContent& value) { m_traceContentHasBeenSet = true; m_traceContent = value; }
56 inline void SetTraceContent(TraceContent&& value) { m_traceContentHasBeenSet = true; m_traceContent = std::move(value); }
60
62
67 inline const Aws::Vector<Aws::String>& GetWirelessDevices() const{ return m_wirelessDevices; }
68 inline bool WirelessDevicesHasBeenSet() const { return m_wirelessDevicesHasBeenSet; }
69 inline void SetWirelessDevices(const Aws::Vector<Aws::String>& value) { m_wirelessDevicesHasBeenSet = true; m_wirelessDevices = value; }
70 inline void SetWirelessDevices(Aws::Vector<Aws::String>&& value) { m_wirelessDevicesHasBeenSet = true; m_wirelessDevices = std::move(value); }
73 inline CreateNetworkAnalyzerConfigurationRequest& AddWirelessDevices(const Aws::String& value) { m_wirelessDevicesHasBeenSet = true; m_wirelessDevices.push_back(value); return *this; }
74 inline CreateNetworkAnalyzerConfigurationRequest& AddWirelessDevices(Aws::String&& value) { m_wirelessDevicesHasBeenSet = true; m_wirelessDevices.push_back(std::move(value)); return *this; }
75 inline CreateNetworkAnalyzerConfigurationRequest& AddWirelessDevices(const char* value) { m_wirelessDevicesHasBeenSet = true; m_wirelessDevices.push_back(value); return *this; }
77
79
84 inline const Aws::Vector<Aws::String>& GetWirelessGateways() const{ return m_wirelessGateways; }
85 inline bool WirelessGatewaysHasBeenSet() const { return m_wirelessGatewaysHasBeenSet; }
86 inline void SetWirelessGateways(const Aws::Vector<Aws::String>& value) { m_wirelessGatewaysHasBeenSet = true; m_wirelessGateways = value; }
87 inline void SetWirelessGateways(Aws::Vector<Aws::String>&& value) { m_wirelessGatewaysHasBeenSet = true; m_wirelessGateways = std::move(value); }
90 inline CreateNetworkAnalyzerConfigurationRequest& AddWirelessGateways(const Aws::String& value) { m_wirelessGatewaysHasBeenSet = true; m_wirelessGateways.push_back(value); return *this; }
91 inline CreateNetworkAnalyzerConfigurationRequest& AddWirelessGateways(Aws::String&& value) { m_wirelessGatewaysHasBeenSet = true; m_wirelessGateways.push_back(std::move(value)); return *this; }
92 inline CreateNetworkAnalyzerConfigurationRequest& AddWirelessGateways(const char* value) { m_wirelessGatewaysHasBeenSet = true; m_wirelessGateways.push_back(value); return *this; }
94
96
97 inline const Aws::String& GetDescription() const{ return m_description; }
98 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
99 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
100 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
101 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
103 inline CreateNetworkAnalyzerConfigurationRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
104 inline CreateNetworkAnalyzerConfigurationRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
106
108
109 inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
110 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
111 inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
112 inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
113 inline CreateNetworkAnalyzerConfigurationRequest& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
114 inline CreateNetworkAnalyzerConfigurationRequest& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
115 inline CreateNetworkAnalyzerConfigurationRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
116 inline CreateNetworkAnalyzerConfigurationRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
118
120
121 inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; }
122 inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; }
123 inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = value; }
124 inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::move(value); }
125 inline void SetClientRequestToken(const char* value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken.assign(value); }
130
132
137 inline const Aws::Vector<Aws::String>& GetMulticastGroups() const{ return m_multicastGroups; }
138 inline bool MulticastGroupsHasBeenSet() const { return m_multicastGroupsHasBeenSet; }
139 inline void SetMulticastGroups(const Aws::Vector<Aws::String>& value) { m_multicastGroupsHasBeenSet = true; m_multicastGroups = value; }
140 inline void SetMulticastGroups(Aws::Vector<Aws::String>&& value) { m_multicastGroupsHasBeenSet = true; m_multicastGroups = std::move(value); }
143 inline CreateNetworkAnalyzerConfigurationRequest& AddMulticastGroups(const Aws::String& value) { m_multicastGroupsHasBeenSet = true; m_multicastGroups.push_back(value); return *this; }
144 inline CreateNetworkAnalyzerConfigurationRequest& AddMulticastGroups(Aws::String&& value) { m_multicastGroupsHasBeenSet = true; m_multicastGroups.push_back(std::move(value)); return *this; }
145 inline CreateNetworkAnalyzerConfigurationRequest& AddMulticastGroups(const char* value) { m_multicastGroupsHasBeenSet = true; m_multicastGroups.push_back(value); return *this; }
147 private:
148
149 Aws::String m_name;
150 bool m_nameHasBeenSet = false;
151
152 TraceContent m_traceContent;
153 bool m_traceContentHasBeenSet = false;
154
155 Aws::Vector<Aws::String> m_wirelessDevices;
156 bool m_wirelessDevicesHasBeenSet = false;
157
158 Aws::Vector<Aws::String> m_wirelessGateways;
159 bool m_wirelessGatewaysHasBeenSet = false;
160
161 Aws::String m_description;
162 bool m_descriptionHasBeenSet = false;
163
164 Aws::Vector<Tag> m_tags;
165 bool m_tagsHasBeenSet = false;
166
167 Aws::String m_clientRequestToken;
168 bool m_clientRequestTokenHasBeenSet = false;
169
170 Aws::Vector<Aws::String> m_multicastGroups;
171 bool m_multicastGroupsHasBeenSet = false;
172 };
173
174} // namespace Model
175} // namespace IoTWireless
176} // namespace Aws
CreateNetworkAnalyzerConfigurationRequest & WithDescription(const char *value)
CreateNetworkAnalyzerConfigurationRequest & WithTraceContent(TraceContent &&value)
CreateNetworkAnalyzerConfigurationRequest & WithWirelessDevices(const Aws::Vector< Aws::String > &value)
CreateNetworkAnalyzerConfigurationRequest & AddMulticastGroups(const char *value)
CreateNetworkAnalyzerConfigurationRequest & WithTags(const Aws::Vector< Tag > &value)
CreateNetworkAnalyzerConfigurationRequest & AddWirelessGateways(Aws::String &&value)
CreateNetworkAnalyzerConfigurationRequest & AddWirelessDevices(const char *value)
CreateNetworkAnalyzerConfigurationRequest & WithWirelessGateways(Aws::Vector< Aws::String > &&value)
CreateNetworkAnalyzerConfigurationRequest & WithWirelessDevices(Aws::Vector< Aws::String > &&value)
CreateNetworkAnalyzerConfigurationRequest & WithName(const Aws::String &value)
CreateNetworkAnalyzerConfigurationRequest & WithTraceContent(const TraceContent &value)
CreateNetworkAnalyzerConfigurationRequest & WithDescription(Aws::String &&value)
CreateNetworkAnalyzerConfigurationRequest & AddWirelessGateways(const Aws::String &value)
CreateNetworkAnalyzerConfigurationRequest & WithClientRequestToken(const Aws::String &value)
CreateNetworkAnalyzerConfigurationRequest & WithTags(Aws::Vector< Tag > &&value)
CreateNetworkAnalyzerConfigurationRequest & WithWirelessGateways(const Aws::Vector< Aws::String > &value)
CreateNetworkAnalyzerConfigurationRequest & AddMulticastGroups(const Aws::String &value)
CreateNetworkAnalyzerConfigurationRequest & WithClientRequestToken(const char *value)
CreateNetworkAnalyzerConfigurationRequest & WithName(const char *value)
CreateNetworkAnalyzerConfigurationRequest & WithClientRequestToken(Aws::String &&value)
CreateNetworkAnalyzerConfigurationRequest & WithMulticastGroups(const Aws::Vector< Aws::String > &value)
CreateNetworkAnalyzerConfigurationRequest & WithName(Aws::String &&value)
AWS_IOTWIRELESS_API Aws::String SerializePayload() const override
CreateNetworkAnalyzerConfigurationRequest & AddMulticastGroups(Aws::String &&value)
CreateNetworkAnalyzerConfigurationRequest & WithMulticastGroups(Aws::Vector< Aws::String > &&value)
CreateNetworkAnalyzerConfigurationRequest & AddWirelessGateways(const char *value)
CreateNetworkAnalyzerConfigurationRequest & AddWirelessDevices(const Aws::String &value)
CreateNetworkAnalyzerConfigurationRequest & AddWirelessDevices(Aws::String &&value)
CreateNetworkAnalyzerConfigurationRequest & WithDescription(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector