AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateMulticastGroupRequest.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/LoRaWANMulticast.h>
11#include <utility>
12
13namespace Aws
14{
15namespace IoTWireless
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_IOTWIRELESS_API UpdateMulticastGroupRequest();
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 "UpdateMulticastGroup"; }
32
33 AWS_IOTWIRELESS_API Aws::String SerializePayload() const override;
34
35
37
38 inline const Aws::String& GetId() const{ return m_id; }
39 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
40 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
41 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
42 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
43 inline UpdateMulticastGroupRequest& WithId(const Aws::String& value) { SetId(value); return *this;}
44 inline UpdateMulticastGroupRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
45 inline UpdateMulticastGroupRequest& WithId(const char* value) { SetId(value); return *this;}
47
49
50 inline const Aws::String& GetName() const{ return m_name; }
51 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
52 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
53 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
54 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
55 inline UpdateMulticastGroupRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
56 inline UpdateMulticastGroupRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
57 inline UpdateMulticastGroupRequest& WithName(const char* value) { SetName(value); return *this;}
59
61
62 inline const Aws::String& GetDescription() const{ return m_description; }
63 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
64 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
65 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
66 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
67 inline UpdateMulticastGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
68 inline UpdateMulticastGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
69 inline UpdateMulticastGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
71
73
74 inline const LoRaWANMulticast& GetLoRaWAN() const{ return m_loRaWAN; }
75 inline bool LoRaWANHasBeenSet() const { return m_loRaWANHasBeenSet; }
76 inline void SetLoRaWAN(const LoRaWANMulticast& value) { m_loRaWANHasBeenSet = true; m_loRaWAN = value; }
77 inline void SetLoRaWAN(LoRaWANMulticast&& value) { m_loRaWANHasBeenSet = true; m_loRaWAN = std::move(value); }
78 inline UpdateMulticastGroupRequest& WithLoRaWAN(const LoRaWANMulticast& value) { SetLoRaWAN(value); return *this;}
79 inline UpdateMulticastGroupRequest& WithLoRaWAN(LoRaWANMulticast&& value) { SetLoRaWAN(std::move(value)); return *this;}
81 private:
82
83 Aws::String m_id;
84 bool m_idHasBeenSet = false;
85
86 Aws::String m_name;
87 bool m_nameHasBeenSet = false;
88
89 Aws::String m_description;
90 bool m_descriptionHasBeenSet = false;
91
92 LoRaWANMulticast m_loRaWAN;
93 bool m_loRaWANHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace IoTWireless
98} // namespace Aws
UpdateMulticastGroupRequest & WithId(const char *value)
UpdateMulticastGroupRequest & WithId(const Aws::String &value)
UpdateMulticastGroupRequest & WithName(Aws::String &&value)
UpdateMulticastGroupRequest & WithDescription(Aws::String &&value)
UpdateMulticastGroupRequest & WithName(const char *value)
UpdateMulticastGroupRequest & WithId(Aws::String &&value)
AWS_IOTWIRELESS_API Aws::String SerializePayload() const override
UpdateMulticastGroupRequest & WithDescription(const Aws::String &value)
UpdateMulticastGroupRequest & WithName(const Aws::String &value)
UpdateMulticastGroupRequest & WithLoRaWAN(const LoRaWANMulticast &value)
UpdateMulticastGroupRequest & WithDescription(const char *value)
UpdateMulticastGroupRequest & WithLoRaWAN(LoRaWANMulticast &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String