AWS SDK for C++

AWS SDK for C++ Version 1.11.788

Loading...
Searching...
No Matches
DeregisterWirelessDeviceRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/iotwireless/IoTWirelessRequest.h>
9#include <aws/iotwireless/IoTWireless_EXPORTS.h>
10#include <aws/iotwireless/model/WirelessDeviceType.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Http {
16class URI;
17} // namespace Http
18namespace IoTWireless {
19namespace Model {
20
24 public:
25 AWS_IOTWIRELESS_API DeregisterWirelessDeviceRequest() = 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 "DeregisterWirelessDevice"; }
32
33 AWS_IOTWIRELESS_API Aws::String SerializePayload() const override;
34
35 AWS_IOTWIRELESS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
36
38
42 inline const Aws::String& GetIdentifier() const { return m_identifier; }
43 inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; }
44 template <typename IdentifierT = Aws::String>
45 void SetIdentifier(IdentifierT&& value) {
46 m_identifierHasBeenSet = true;
47 m_identifier = std::forward<IdentifierT>(value);
48 }
49 template <typename IdentifierT = Aws::String>
51 SetIdentifier(std::forward<IdentifierT>(value));
52 return *this;
53 }
55
57
61 inline WirelessDeviceType GetWirelessDeviceType() const { return m_wirelessDeviceType; }
62 inline bool WirelessDeviceTypeHasBeenSet() const { return m_wirelessDeviceTypeHasBeenSet; }
64 m_wirelessDeviceTypeHasBeenSet = true;
65 m_wirelessDeviceType = value;
66 }
69 return *this;
70 }
72 private:
73 Aws::String m_identifier;
74
76 bool m_identifierHasBeenSet = false;
77 bool m_wirelessDeviceTypeHasBeenSet = false;
78};
79
80} // namespace Model
81} // namespace IoTWireless
82} // namespace Aws
AWS_IOTWIRELESS_API DeregisterWirelessDeviceRequest()=default
AWS_IOTWIRELESS_API Aws::String SerializePayload() const override
DeregisterWirelessDeviceRequest & WithIdentifier(IdentifierT &&value)
AWS_IOTWIRELESS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
DeregisterWirelessDeviceRequest & WithWirelessDeviceType(WirelessDeviceType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String