AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListCidrLocationsRequest.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 ListCidrLocationsRequest();
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 "ListCidrLocations"; }
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 ListCidrLocationsRequest& WithCollectionId(const Aws::String& value) { SetCollectionId(value); return *this;}
51 inline ListCidrLocationsRequest& WithCollectionId(Aws::String&& value) { SetCollectionId(std::move(value)); return *this;}
52 inline ListCidrLocationsRequest& WithCollectionId(const char* value) { SetCollectionId(value); return *this;}
54
56
61 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
62 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
63 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
64 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
65 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
66 inline ListCidrLocationsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
67 inline ListCidrLocationsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
68 inline ListCidrLocationsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
70
72
76 inline const Aws::String& GetMaxResults() const{ return m_maxResults; }
77 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
78 inline void SetMaxResults(const Aws::String& value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
79 inline void SetMaxResults(Aws::String&& value) { m_maxResultsHasBeenSet = true; m_maxResults = std::move(value); }
80 inline void SetMaxResults(const char* value) { m_maxResultsHasBeenSet = true; m_maxResults.assign(value); }
81 inline ListCidrLocationsRequest& WithMaxResults(const Aws::String& value) { SetMaxResults(value); return *this;}
82 inline ListCidrLocationsRequest& WithMaxResults(Aws::String&& value) { SetMaxResults(std::move(value)); return *this;}
83 inline ListCidrLocationsRequest& WithMaxResults(const char* value) { SetMaxResults(value); return *this;}
85 private:
86
87 Aws::String m_collectionId;
88 bool m_collectionIdHasBeenSet = false;
89
90 Aws::String m_nextToken;
91 bool m_nextTokenHasBeenSet = false;
92
93 Aws::String m_maxResults;
94 bool m_maxResultsHasBeenSet = false;
95 };
96
97} // namespace Model
98} // namespace Route53
99} // namespace Aws
AWS_ROUTE53_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
AWS_ROUTE53_API Aws::String SerializePayload() const override
ListCidrLocationsRequest & WithCollectionId(const Aws::String &value)
ListCidrLocationsRequest & WithCollectionId(const char *value)
ListCidrLocationsRequest & WithMaxResults(const Aws::String &value)
ListCidrLocationsRequest & WithNextToken(Aws::String &&value)
ListCidrLocationsRequest & WithMaxResults(const char *value)
ListCidrLocationsRequest & WithMaxResults(Aws::String &&value)
ListCidrLocationsRequest & WithNextToken(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
ListCidrLocationsRequest & WithNextToken(const char *value)
ListCidrLocationsRequest & WithCollectionId(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String