AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListPricesRequest.h
1
6#pragma once
7#include <aws/route53domains/Route53Domains_EXPORTS.h>
8#include <aws/route53domains/Route53DomainsRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Route53Domains
15{
16namespace Model
17{
18
22 {
23 public:
24 AWS_ROUTE53DOMAINS_API ListPricesRequest();
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "ListPrices"; }
31
32 AWS_ROUTE53DOMAINS_API Aws::String SerializePayload() const override;
33
34 AWS_ROUTE53DOMAINS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
35
36
38
43 inline const Aws::String& GetTld() const{ return m_tld; }
44 inline bool TldHasBeenSet() const { return m_tldHasBeenSet; }
45 inline void SetTld(const Aws::String& value) { m_tldHasBeenSet = true; m_tld = value; }
46 inline void SetTld(Aws::String&& value) { m_tldHasBeenSet = true; m_tld = std::move(value); }
47 inline void SetTld(const char* value) { m_tldHasBeenSet = true; m_tld.assign(value); }
48 inline ListPricesRequest& WithTld(const Aws::String& value) { SetTld(value); return *this;}
49 inline ListPricesRequest& WithTld(Aws::String&& value) { SetTld(std::move(value)); return *this;}
50 inline ListPricesRequest& WithTld(const char* value) { SetTld(value); return *this;}
52
54
64 inline const Aws::String& GetMarker() const{ return m_marker; }
65 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
66 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
67 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
68 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
69 inline ListPricesRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
70 inline ListPricesRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
71 inline ListPricesRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
73
75
79 inline int GetMaxItems() const{ return m_maxItems; }
80 inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; }
81 inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; }
82 inline ListPricesRequest& WithMaxItems(int value) { SetMaxItems(value); return *this;}
84 private:
85
86 Aws::String m_tld;
87 bool m_tldHasBeenSet = false;
88
89 Aws::String m_marker;
90 bool m_markerHasBeenSet = false;
91
92 int m_maxItems;
93 bool m_maxItemsHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace Route53Domains
98} // namespace Aws
ListPricesRequest & WithMarker(Aws::String &&value)
ListPricesRequest & WithTld(Aws::String &&value)
AWS_ROUTE53DOMAINS_API Aws::String SerializePayload() const override
AWS_ROUTE53DOMAINS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override
ListPricesRequest & WithMarker(const Aws::String &value)
ListPricesRequest & WithMarker(const char *value)
ListPricesRequest & WithMaxItems(int value)
ListPricesRequest & WithTld(const char *value)
virtual const char * GetServiceRequestName() const override
ListPricesRequest & WithTld(const Aws::String &value)
Aws::Map< Aws::String, Aws::String > HeaderValueCollection
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String