AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ListDomainConfigurationsRequest.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/ServiceType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Http
16{
17 class URI;
18} //namespace Http
19namespace IoT
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_IOT_API ListDomainConfigurationsRequest() = 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 "ListDomainConfigurations"; }
36
37 AWS_IOT_API Aws::String SerializePayload() const override;
38
39 AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
40
41
43
46 inline const Aws::String& GetMarker() const { return m_marker; }
47 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
48 template<typename MarkerT = Aws::String>
49 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
50 template<typename MarkerT = Aws::String>
51 ListDomainConfigurationsRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
53
55
58 inline int GetPageSize() const { return m_pageSize; }
59 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
60 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
61 inline ListDomainConfigurationsRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
63
65
68 inline ServiceType GetServiceType() const { return m_serviceType; }
69 inline bool ServiceTypeHasBeenSet() const { return m_serviceTypeHasBeenSet; }
70 inline void SetServiceType(ServiceType value) { m_serviceTypeHasBeenSet = true; m_serviceType = value; }
73 private:
74
75 Aws::String m_marker;
76 bool m_markerHasBeenSet = false;
77
78 int m_pageSize{0};
79 bool m_pageSizeHasBeenSet = false;
80
81 ServiceType m_serviceType{ServiceType::NOT_SET};
82 bool m_serviceTypeHasBeenSet = false;
83 };
84
85} // namespace Model
86} // namespace IoT
87} // namespace Aws
AWS_IOT_API Aws::String SerializePayload() const override
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListDomainConfigurationsRequest & WithMarker(MarkerT &&value)
ListDomainConfigurationsRequest & WithServiceType(ServiceType value)
ListDomainConfigurationsRequest & WithPageSize(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String