AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListHealthChecksRequest.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/route53/Route53Request.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Http
15{
16 class URI;
17} //namespace Http
18namespace Route53
19{
20namespace Model
21{
22
30 {
31 public:
32 AWS_ROUTE53_API ListHealthChecksRequest();
33
34 // Service request name is the Operation name which will send this request out,
35 // each operation should has unique request name, so that we can get operation's name from this request.
36 // Note: this is not true for response, multiple operations may have the same response name,
37 // so we can not get operation's name from response.
38 inline virtual const char* GetServiceRequestName() const override { return "ListHealthChecks"; }
39
40 AWS_ROUTE53_API Aws::String SerializePayload() const override;
41
42 AWS_ROUTE53_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
43
44
46
56 inline const Aws::String& GetMarker() const{ return m_marker; }
57 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
58 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
59 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
60 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
61 inline ListHealthChecksRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
62 inline ListHealthChecksRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
63 inline ListHealthChecksRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
65
67
74 inline const Aws::String& GetMaxItems() const{ return m_maxItems; }
75 inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; }
76 inline void SetMaxItems(const Aws::String& value) { m_maxItemsHasBeenSet = true; m_maxItems = value; }
77 inline void SetMaxItems(Aws::String&& value) { m_maxItemsHasBeenSet = true; m_maxItems = std::move(value); }
78 inline void SetMaxItems(const char* value) { m_maxItemsHasBeenSet = true; m_maxItems.assign(value); }
79 inline ListHealthChecksRequest& WithMaxItems(const Aws::String& value) { SetMaxItems(value); return *this;}
80 inline ListHealthChecksRequest& WithMaxItems(Aws::String&& value) { SetMaxItems(std::move(value)); return *this;}
81 inline ListHealthChecksRequest& WithMaxItems(const char* value) { SetMaxItems(value); return *this;}
83 private:
84
85 Aws::String m_marker;
86 bool m_markerHasBeenSet = false;
87
88 Aws::String m_maxItems;
89 bool m_maxItemsHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace Route53
94} // namespace Aws
AWS_ROUTE53_API Aws::String SerializePayload() const override
ListHealthChecksRequest & WithMarker(const Aws::String &value)
ListHealthChecksRequest & WithMarker(const char *value)
ListHealthChecksRequest & WithMaxItems(Aws::String &&value)
ListHealthChecksRequest & WithMarker(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
AWS_ROUTE53_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListHealthChecksRequest & WithMaxItems(const Aws::String &value)
ListHealthChecksRequest & WithMaxItems(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String