AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListCidrBlocksRequest.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
26 {
27 public:
28 AWS_ROUTE53_API ListCidrBlocksRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "ListCidrBlocks"; }
35
36 AWS_ROUTE53_API Aws::String SerializePayload() const override;
37
38 AWS_ROUTE53_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
45 inline const Aws::String& GetCollectionId() const{ return m_collectionId; }
46 inline bool CollectionIdHasBeenSet() const { return m_collectionIdHasBeenSet; }
47 inline void SetCollectionId(const Aws::String& value) { m_collectionIdHasBeenSet = true; m_collectionId = value; }
48 inline void SetCollectionId(Aws::String&& value) { m_collectionIdHasBeenSet = true; m_collectionId = std::move(value); }
49 inline void SetCollectionId(const char* value) { m_collectionIdHasBeenSet = true; m_collectionId.assign(value); }
50 inline ListCidrBlocksRequest& WithCollectionId(const Aws::String& value) { SetCollectionId(value); return *this;}
51 inline ListCidrBlocksRequest& WithCollectionId(Aws::String&& value) { SetCollectionId(std::move(value)); return *this;}
52 inline ListCidrBlocksRequest& WithCollectionId(const char* value) { SetCollectionId(value); return *this;}
54
56
59 inline const Aws::String& GetLocationName() const{ return m_locationName; }
60 inline bool LocationNameHasBeenSet() const { return m_locationNameHasBeenSet; }
61 inline void SetLocationName(const Aws::String& value) { m_locationNameHasBeenSet = true; m_locationName = value; }
62 inline void SetLocationName(Aws::String&& value) { m_locationNameHasBeenSet = true; m_locationName = std::move(value); }
63 inline void SetLocationName(const char* value) { m_locationNameHasBeenSet = true; m_locationName.assign(value); }
64 inline ListCidrBlocksRequest& WithLocationName(const Aws::String& value) { SetLocationName(value); return *this;}
65 inline ListCidrBlocksRequest& WithLocationName(Aws::String&& value) { SetLocationName(std::move(value)); return *this;}
66 inline ListCidrBlocksRequest& WithLocationName(const char* value) { SetLocationName(value); return *this;}
68
70
74 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
75 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
76 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
77 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
78 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
79 inline ListCidrBlocksRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
80 inline ListCidrBlocksRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
81 inline ListCidrBlocksRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
83
85
88 inline const Aws::String& GetMaxResults() const{ return m_maxResults; }
89 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
90 inline void SetMaxResults(const Aws::String& value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
91 inline void SetMaxResults(Aws::String&& value) { m_maxResultsHasBeenSet = true; m_maxResults = std::move(value); }
92 inline void SetMaxResults(const char* value) { m_maxResultsHasBeenSet = true; m_maxResults.assign(value); }
93 inline ListCidrBlocksRequest& WithMaxResults(const Aws::String& value) { SetMaxResults(value); return *this;}
94 inline ListCidrBlocksRequest& WithMaxResults(Aws::String&& value) { SetMaxResults(std::move(value)); return *this;}
95 inline ListCidrBlocksRequest& WithMaxResults(const char* value) { SetMaxResults(value); return *this;}
97 private:
98
99 Aws::String m_collectionId;
100 bool m_collectionIdHasBeenSet = false;
101
102 Aws::String m_locationName;
103 bool m_locationNameHasBeenSet = false;
104
105 Aws::String m_nextToken;
106 bool m_nextTokenHasBeenSet = false;
107
108 Aws::String m_maxResults;
109 bool m_maxResultsHasBeenSet = false;
110 };
111
112} // namespace Model
113} // namespace Route53
114} // namespace Aws
ListCidrBlocksRequest & WithLocationName(Aws::String &&value)
ListCidrBlocksRequest & WithMaxResults(const Aws::String &value)
ListCidrBlocksRequest & WithLocationName(const Aws::String &value)
ListCidrBlocksRequest & WithNextToken(const Aws::String &value)
ListCidrBlocksRequest & WithCollectionId(const Aws::String &value)
void SetCollectionId(const Aws::String &value)
AWS_ROUTE53_API Aws::String SerializePayload() const override
AWS_ROUTE53_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListCidrBlocksRequest & WithMaxResults(const char *value)
ListCidrBlocksRequest & WithNextToken(Aws::String &&value)
ListCidrBlocksRequest & WithNextToken(const char *value)
ListCidrBlocksRequest & WithCollectionId(const char *value)
virtual const char * GetServiceRequestName() const override
ListCidrBlocksRequest & WithLocationName(const char *value)
ListCidrBlocksRequest & WithCollectionId(Aws::String &&value)
void SetLocationName(const Aws::String &value)
ListCidrBlocksRequest & WithMaxResults(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String