AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListDeviceProfilesRequest.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/DeviceProfileType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace IoTWireless
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_IOTWIRELESS_API ListDeviceProfilesRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "ListDeviceProfiles"; }
36
37 AWS_IOTWIRELESS_API Aws::String SerializePayload() const override;
38
39 AWS_IOTWIRELESS_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
48 inline const Aws::String& GetNextToken() const { return m_nextToken; }
49 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
50 template<typename NextTokenT = Aws::String>
51 void SetNextToken(NextTokenT&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::forward<NextTokenT>(value); }
52 template<typename NextTokenT = Aws::String>
53 ListDeviceProfilesRequest& WithNextToken(NextTokenT&& value) { SetNextToken(std::forward<NextTokenT>(value)); return *this;}
55
57
60 inline int GetMaxResults() const { return m_maxResults; }
61 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
62 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
63 inline ListDeviceProfilesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
65
67
71 inline DeviceProfileType GetDeviceProfileType() const { return m_deviceProfileType; }
72 inline bool DeviceProfileTypeHasBeenSet() const { return m_deviceProfileTypeHasBeenSet; }
73 inline void SetDeviceProfileType(DeviceProfileType value) { m_deviceProfileTypeHasBeenSet = true; m_deviceProfileType = value; }
76 private:
77
78 Aws::String m_nextToken;
79 bool m_nextTokenHasBeenSet = false;
80
81 int m_maxResults{0};
82 bool m_maxResultsHasBeenSet = false;
83
85 bool m_deviceProfileTypeHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace IoTWireless
90} // namespace Aws
virtual const char * GetServiceRequestName() const override
AWS_IOTWIRELESS_API ListDeviceProfilesRequest()=default
ListDeviceProfilesRequest & WithMaxResults(int value)
ListDeviceProfilesRequest & WithDeviceProfileType(DeviceProfileType value)
AWS_IOTWIRELESS_API Aws::String SerializePayload() const override
ListDeviceProfilesRequest & WithNextToken(NextTokenT &&value)
AWS_IOTWIRELESS_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String