AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ListEnvironmentProfilesRequest.h
1
6#pragma once
7#include <aws/datazone/DataZone_EXPORTS.h>
8#include <aws/datazone/DataZoneRequest.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 DataZone
19{
20namespace Model
21{
22
26 {
27 public:
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 "ListEnvironmentProfiles"; }
35
36 AWS_DATAZONE_API Aws::String SerializePayload() const override;
37
38 AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI& uri) const override;
39
40
42
46 inline const Aws::String& GetAwsAccountId() const{ return m_awsAccountId; }
47 inline bool AwsAccountIdHasBeenSet() const { return m_awsAccountIdHasBeenSet; }
48 inline void SetAwsAccountId(const Aws::String& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = value; }
49 inline void SetAwsAccountId(Aws::String&& value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId = std::move(value); }
50 inline void SetAwsAccountId(const char* value) { m_awsAccountIdHasBeenSet = true; m_awsAccountId.assign(value); }
51 inline ListEnvironmentProfilesRequest& WithAwsAccountId(const Aws::String& value) { SetAwsAccountId(value); return *this;}
52 inline ListEnvironmentProfilesRequest& WithAwsAccountId(Aws::String&& value) { SetAwsAccountId(std::move(value)); return *this;}
53 inline ListEnvironmentProfilesRequest& WithAwsAccountId(const char* value) { SetAwsAccountId(value); return *this;}
55
57
61 inline const Aws::String& GetAwsAccountRegion() const{ return m_awsAccountRegion; }
62 inline bool AwsAccountRegionHasBeenSet() const { return m_awsAccountRegionHasBeenSet; }
63 inline void SetAwsAccountRegion(const Aws::String& value) { m_awsAccountRegionHasBeenSet = true; m_awsAccountRegion = value; }
64 inline void SetAwsAccountRegion(Aws::String&& value) { m_awsAccountRegionHasBeenSet = true; m_awsAccountRegion = std::move(value); }
65 inline void SetAwsAccountRegion(const char* value) { m_awsAccountRegionHasBeenSet = true; m_awsAccountRegion.assign(value); }
67 inline ListEnvironmentProfilesRequest& WithAwsAccountRegion(Aws::String&& value) { SetAwsAccountRegion(std::move(value)); return *this;}
68 inline ListEnvironmentProfilesRequest& WithAwsAccountRegion(const char* value) { SetAwsAccountRegion(value); return *this;}
70
72
75 inline const Aws::String& GetDomainIdentifier() const{ return m_domainIdentifier; }
76 inline bool DomainIdentifierHasBeenSet() const { return m_domainIdentifierHasBeenSet; }
77 inline void SetDomainIdentifier(const Aws::String& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = value; }
78 inline void SetDomainIdentifier(Aws::String&& value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier = std::move(value); }
79 inline void SetDomainIdentifier(const char* value) { m_domainIdentifierHasBeenSet = true; m_domainIdentifier.assign(value); }
81 inline ListEnvironmentProfilesRequest& WithDomainIdentifier(Aws::String&& value) { SetDomainIdentifier(std::move(value)); return *this;}
82 inline ListEnvironmentProfilesRequest& WithDomainIdentifier(const char* value) { SetDomainIdentifier(value); return *this;}
84
86
90 inline const Aws::String& GetEnvironmentBlueprintIdentifier() const{ return m_environmentBlueprintIdentifier; }
91 inline bool EnvironmentBlueprintIdentifierHasBeenSet() const { return m_environmentBlueprintIdentifierHasBeenSet; }
92 inline void SetEnvironmentBlueprintIdentifier(const Aws::String& value) { m_environmentBlueprintIdentifierHasBeenSet = true; m_environmentBlueprintIdentifier = value; }
93 inline void SetEnvironmentBlueprintIdentifier(Aws::String&& value) { m_environmentBlueprintIdentifierHasBeenSet = true; m_environmentBlueprintIdentifier = std::move(value); }
94 inline void SetEnvironmentBlueprintIdentifier(const char* value) { m_environmentBlueprintIdentifierHasBeenSet = true; m_environmentBlueprintIdentifier.assign(value); }
99
101
109 inline int GetMaxResults() const{ return m_maxResults; }
110 inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
111 inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
112 inline ListEnvironmentProfilesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
114
116
119 inline const Aws::String& GetName() const{ return m_name; }
120 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
121 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
122 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
123 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
124 inline ListEnvironmentProfilesRequest& WithName(const Aws::String& value) { SetName(value); return *this;}
125 inline ListEnvironmentProfilesRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
126 inline ListEnvironmentProfilesRequest& WithName(const char* value) { SetName(value); return *this;}
128
130
139 inline const Aws::String& GetNextToken() const{ return m_nextToken; }
140 inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
141 inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
142 inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
143 inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
144 inline ListEnvironmentProfilesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
145 inline ListEnvironmentProfilesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
146 inline ListEnvironmentProfilesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
148
150
153 inline const Aws::String& GetProjectIdentifier() const{ return m_projectIdentifier; }
154 inline bool ProjectIdentifierHasBeenSet() const { return m_projectIdentifierHasBeenSet; }
155 inline void SetProjectIdentifier(const Aws::String& value) { m_projectIdentifierHasBeenSet = true; m_projectIdentifier = value; }
156 inline void SetProjectIdentifier(Aws::String&& value) { m_projectIdentifierHasBeenSet = true; m_projectIdentifier = std::move(value); }
157 inline void SetProjectIdentifier(const char* value) { m_projectIdentifierHasBeenSet = true; m_projectIdentifier.assign(value); }
160 inline ListEnvironmentProfilesRequest& WithProjectIdentifier(const char* value) { SetProjectIdentifier(value); return *this;}
162 private:
163
164 Aws::String m_awsAccountId;
165 bool m_awsAccountIdHasBeenSet = false;
166
167 Aws::String m_awsAccountRegion;
168 bool m_awsAccountRegionHasBeenSet = false;
169
170 Aws::String m_domainIdentifier;
171 bool m_domainIdentifierHasBeenSet = false;
172
173 Aws::String m_environmentBlueprintIdentifier;
174 bool m_environmentBlueprintIdentifierHasBeenSet = false;
175
176 int m_maxResults;
177 bool m_maxResultsHasBeenSet = false;
178
179 Aws::String m_name;
180 bool m_nameHasBeenSet = false;
181
182 Aws::String m_nextToken;
183 bool m_nextTokenHasBeenSet = false;
184
185 Aws::String m_projectIdentifier;
186 bool m_projectIdentifierHasBeenSet = false;
187 };
188
189} // namespace Model
190} // namespace DataZone
191} // namespace Aws
ListEnvironmentProfilesRequest & WithAwsAccountId(const char *value)
ListEnvironmentProfilesRequest & WithProjectIdentifier(const Aws::String &value)
ListEnvironmentProfilesRequest & WithNextToken(Aws::String &&value)
ListEnvironmentProfilesRequest & WithDomainIdentifier(Aws::String &&value)
ListEnvironmentProfilesRequest & WithEnvironmentBlueprintIdentifier(const char *value)
ListEnvironmentProfilesRequest & WithName(const Aws::String &value)
ListEnvironmentProfilesRequest & WithEnvironmentBlueprintIdentifier(Aws::String &&value)
ListEnvironmentProfilesRequest & WithEnvironmentBlueprintIdentifier(const Aws::String &value)
ListEnvironmentProfilesRequest & WithAwsAccountRegion(Aws::String &&value)
ListEnvironmentProfilesRequest & WithAwsAccountId(const Aws::String &value)
AWS_DATAZONE_API Aws::String SerializePayload() const override
ListEnvironmentProfilesRequest & WithDomainIdentifier(const Aws::String &value)
AWS_DATAZONE_API void AddQueryStringParameters(Aws::Http::URI &uri) const override
ListEnvironmentProfilesRequest & WithProjectIdentifier(Aws::String &&value)
ListEnvironmentProfilesRequest & WithDomainIdentifier(const char *value)
ListEnvironmentProfilesRequest & WithName(Aws::String &&value)
ListEnvironmentProfilesRequest & WithProjectIdentifier(const char *value)
ListEnvironmentProfilesRequest & WithAwsAccountId(Aws::String &&value)
ListEnvironmentProfilesRequest & WithName(const char *value)
ListEnvironmentProfilesRequest & WithAwsAccountRegion(const Aws::String &value)
ListEnvironmentProfilesRequest & WithNextToken(const Aws::String &value)
ListEnvironmentProfilesRequest & WithAwsAccountRegion(const char *value)
ListEnvironmentProfilesRequest & WithNextToken(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String