AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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:
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 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
49 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
50 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
51 inline ListDomainConfigurationsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
52 inline ListDomainConfigurationsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
53 inline ListDomainConfigurationsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
55
57
60 inline int GetPageSize() const{ return m_pageSize; }
61 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
62 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
63 inline ListDomainConfigurationsRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
65
67
70 inline const ServiceType& GetServiceType() const{ return m_serviceType; }
71 inline bool ServiceTypeHasBeenSet() const { return m_serviceTypeHasBeenSet; }
72 inline void SetServiceType(const ServiceType& value) { m_serviceTypeHasBeenSet = true; m_serviceType = value; }
73 inline void SetServiceType(ServiceType&& value) { m_serviceTypeHasBeenSet = true; m_serviceType = std::move(value); }
74 inline ListDomainConfigurationsRequest& WithServiceType(const ServiceType& value) { SetServiceType(value); return *this;}
75 inline ListDomainConfigurationsRequest& WithServiceType(ServiceType&& value) { SetServiceType(std::move(value)); return *this;}
77 private:
78
79 Aws::String m_marker;
80 bool m_markerHasBeenSet = false;
81
82 int m_pageSize;
83 bool m_pageSizeHasBeenSet = false;
84
85 ServiceType m_serviceType;
86 bool m_serviceTypeHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace IoT
91} // namespace Aws
ListDomainConfigurationsRequest & WithServiceType(ServiceType &&value)
AWS_IOT_API Aws::String SerializePayload() const override
AWS_IOT_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListDomainConfigurationsRequest & WithServiceType(const ServiceType &value)
ListDomainConfigurationsRequest & WithMarker(const Aws::String &value)
ListDomainConfigurationsRequest & WithMarker(Aws::String &&value)
ListDomainConfigurationsRequest & WithPageSize(int value)
ListDomainConfigurationsRequest & WithMarker(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String