AWS SDK for C++

AWS SDK for C++ Version 1.11.717

Loading...
Searching...
No Matches
DescribeAccountLimitsRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/elasticloadbalancing/ElasticLoadBalancingRequest.h>
9#include <aws/elasticloadbalancing/ElasticLoadBalancing_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace ElasticLoadBalancing {
15namespace Model {
16
20 public:
21 AWS_ELASTICLOADBALANCING_API DescribeAccountLimitsRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeAccountLimits"; }
28
29 AWS_ELASTICLOADBALANCING_API Aws::String SerializePayload() const override;
30
31 protected:
32 AWS_ELASTICLOADBALANCING_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
33
34 public:
36
40 inline const Aws::String& GetMarker() const { return m_marker; }
41 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
42 template <typename MarkerT = Aws::String>
43 void SetMarker(MarkerT&& value) {
44 m_markerHasBeenSet = true;
45 m_marker = std::forward<MarkerT>(value);
46 }
47 template <typename MarkerT = Aws::String>
49 SetMarker(std::forward<MarkerT>(value));
50 return *this;
51 }
53
55
58 inline int GetPageSize() const { return m_pageSize; }
59 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
60 inline void SetPageSize(int value) {
61 m_pageSizeHasBeenSet = true;
62 m_pageSize = value;
63 }
65 SetPageSize(value);
66 return *this;
67 }
69 private:
70 Aws::String m_marker;
71
72 int m_pageSize{0};
73 bool m_markerHasBeenSet = false;
74 bool m_pageSizeHasBeenSet = false;
75};
76
77} // namespace Model
78} // namespace ElasticLoadBalancing
79} // namespace Aws
AWS_ELASTICLOADBALANCING_API Aws::String SerializePayload() const override
AWS_ELASTICLOADBALANCING_API DescribeAccountLimitsRequest()=default
AWS_ELASTICLOADBALANCING_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String