AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateBranchRequest.h
1
6#pragma once
7#include <aws/amplify/Amplify_EXPORTS.h>
8#include <aws/amplify/AmplifyRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/amplify/model/Stage.h>
11#include <aws/core/utils/memory/stl/AWSMap.h>
12#include <aws/amplify/model/Backend.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Amplify
18{
19namespace Model
20{
21
29 {
30 public:
31 AWS_AMPLIFY_API CreateBranchRequest();
32
33 // Service request name is the Operation name which will send this request out,
34 // each operation should has unique request name, so that we can get operation's name from this request.
35 // Note: this is not true for response, multiple operations may have the same response name,
36 // so we can not get operation's name from response.
37 inline virtual const char* GetServiceRequestName() const override { return "CreateBranch"; }
38
39 AWS_AMPLIFY_API Aws::String SerializePayload() const override;
40
41
43
46 inline const Aws::String& GetAppId() const{ return m_appId; }
47 inline bool AppIdHasBeenSet() const { return m_appIdHasBeenSet; }
48 inline void SetAppId(const Aws::String& value) { m_appIdHasBeenSet = true; m_appId = value; }
49 inline void SetAppId(Aws::String&& value) { m_appIdHasBeenSet = true; m_appId = std::move(value); }
50 inline void SetAppId(const char* value) { m_appIdHasBeenSet = true; m_appId.assign(value); }
51 inline CreateBranchRequest& WithAppId(const Aws::String& value) { SetAppId(value); return *this;}
52 inline CreateBranchRequest& WithAppId(Aws::String&& value) { SetAppId(std::move(value)); return *this;}
53 inline CreateBranchRequest& WithAppId(const char* value) { SetAppId(value); return *this;}
55
57
60 inline const Aws::String& GetBranchName() const{ return m_branchName; }
61 inline bool BranchNameHasBeenSet() const { return m_branchNameHasBeenSet; }
62 inline void SetBranchName(const Aws::String& value) { m_branchNameHasBeenSet = true; m_branchName = value; }
63 inline void SetBranchName(Aws::String&& value) { m_branchNameHasBeenSet = true; m_branchName = std::move(value); }
64 inline void SetBranchName(const char* value) { m_branchNameHasBeenSet = true; m_branchName.assign(value); }
65 inline CreateBranchRequest& WithBranchName(const Aws::String& value) { SetBranchName(value); return *this;}
66 inline CreateBranchRequest& WithBranchName(Aws::String&& value) { SetBranchName(std::move(value)); return *this;}
67 inline CreateBranchRequest& WithBranchName(const char* value) { SetBranchName(value); return *this;}
69
71
74 inline const Aws::String& GetDescription() const{ return m_description; }
75 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
76 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
77 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
78 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
79 inline CreateBranchRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
80 inline CreateBranchRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
81 inline CreateBranchRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
83
85
88 inline const Stage& GetStage() const{ return m_stage; }
89 inline bool StageHasBeenSet() const { return m_stageHasBeenSet; }
90 inline void SetStage(const Stage& value) { m_stageHasBeenSet = true; m_stage = value; }
91 inline void SetStage(Stage&& value) { m_stageHasBeenSet = true; m_stage = std::move(value); }
92 inline CreateBranchRequest& WithStage(const Stage& value) { SetStage(value); return *this;}
93 inline CreateBranchRequest& WithStage(Stage&& value) { SetStage(std::move(value)); return *this;}
95
97
100 inline const Aws::String& GetFramework() const{ return m_framework; }
101 inline bool FrameworkHasBeenSet() const { return m_frameworkHasBeenSet; }
102 inline void SetFramework(const Aws::String& value) { m_frameworkHasBeenSet = true; m_framework = value; }
103 inline void SetFramework(Aws::String&& value) { m_frameworkHasBeenSet = true; m_framework = std::move(value); }
104 inline void SetFramework(const char* value) { m_frameworkHasBeenSet = true; m_framework.assign(value); }
105 inline CreateBranchRequest& WithFramework(const Aws::String& value) { SetFramework(value); return *this;}
106 inline CreateBranchRequest& WithFramework(Aws::String&& value) { SetFramework(std::move(value)); return *this;}
107 inline CreateBranchRequest& WithFramework(const char* value) { SetFramework(value); return *this;}
109
111
114 inline bool GetEnableNotification() const{ return m_enableNotification; }
115 inline bool EnableNotificationHasBeenSet() const { return m_enableNotificationHasBeenSet; }
116 inline void SetEnableNotification(bool value) { m_enableNotificationHasBeenSet = true; m_enableNotification = value; }
117 inline CreateBranchRequest& WithEnableNotification(bool value) { SetEnableNotification(value); return *this;}
119
121
124 inline bool GetEnableAutoBuild() const{ return m_enableAutoBuild; }
125 inline bool EnableAutoBuildHasBeenSet() const { return m_enableAutoBuildHasBeenSet; }
126 inline void SetEnableAutoBuild(bool value) { m_enableAutoBuildHasBeenSet = true; m_enableAutoBuild = value; }
127 inline CreateBranchRequest& WithEnableAutoBuild(bool value) { SetEnableAutoBuild(value); return *this;}
129
131
134 inline const Aws::Map<Aws::String, Aws::String>& GetEnvironmentVariables() const{ return m_environmentVariables; }
135 inline bool EnvironmentVariablesHasBeenSet() const { return m_environmentVariablesHasBeenSet; }
136 inline void SetEnvironmentVariables(const Aws::Map<Aws::String, Aws::String>& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables = value; }
137 inline void SetEnvironmentVariables(Aws::Map<Aws::String, Aws::String>&& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables = std::move(value); }
140 inline CreateBranchRequest& AddEnvironmentVariables(const Aws::String& key, const Aws::String& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, value); return *this; }
141 inline CreateBranchRequest& AddEnvironmentVariables(Aws::String&& key, const Aws::String& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(std::move(key), value); return *this; }
142 inline CreateBranchRequest& AddEnvironmentVariables(const Aws::String& key, Aws::String&& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, std::move(value)); return *this; }
143 inline CreateBranchRequest& AddEnvironmentVariables(Aws::String&& key, Aws::String&& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(std::move(key), std::move(value)); return *this; }
144 inline CreateBranchRequest& AddEnvironmentVariables(const char* key, Aws::String&& value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, std::move(value)); return *this; }
145 inline CreateBranchRequest& AddEnvironmentVariables(Aws::String&& key, const char* value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(std::move(key), value); return *this; }
146 inline CreateBranchRequest& AddEnvironmentVariables(const char* key, const char* value) { m_environmentVariablesHasBeenSet = true; m_environmentVariables.emplace(key, value); return *this; }
148
150
155 inline const Aws::String& GetBasicAuthCredentials() const{ return m_basicAuthCredentials; }
156 inline bool BasicAuthCredentialsHasBeenSet() const { return m_basicAuthCredentialsHasBeenSet; }
157 inline void SetBasicAuthCredentials(const Aws::String& value) { m_basicAuthCredentialsHasBeenSet = true; m_basicAuthCredentials = value; }
158 inline void SetBasicAuthCredentials(Aws::String&& value) { m_basicAuthCredentialsHasBeenSet = true; m_basicAuthCredentials = std::move(value); }
159 inline void SetBasicAuthCredentials(const char* value) { m_basicAuthCredentialsHasBeenSet = true; m_basicAuthCredentials.assign(value); }
161 inline CreateBranchRequest& WithBasicAuthCredentials(Aws::String&& value) { SetBasicAuthCredentials(std::move(value)); return *this;}
162 inline CreateBranchRequest& WithBasicAuthCredentials(const char* value) { SetBasicAuthCredentials(value); return *this;}
164
166
169 inline bool GetEnableBasicAuth() const{ return m_enableBasicAuth; }
170 inline bool EnableBasicAuthHasBeenSet() const { return m_enableBasicAuthHasBeenSet; }
171 inline void SetEnableBasicAuth(bool value) { m_enableBasicAuthHasBeenSet = true; m_enableBasicAuth = value; }
172 inline CreateBranchRequest& WithEnableBasicAuth(bool value) { SetEnableBasicAuth(value); return *this;}
174
176
182 inline bool GetEnablePerformanceMode() const{ return m_enablePerformanceMode; }
183 inline bool EnablePerformanceModeHasBeenSet() const { return m_enablePerformanceModeHasBeenSet; }
184 inline void SetEnablePerformanceMode(bool value) { m_enablePerformanceModeHasBeenSet = true; m_enablePerformanceMode = value; }
185 inline CreateBranchRequest& WithEnablePerformanceMode(bool value) { SetEnablePerformanceMode(value); return *this;}
187
189
192 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
193 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
194 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
195 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
196 inline CreateBranchRequest& WithTags(const Aws::Map<Aws::String, Aws::String>& value) { SetTags(value); return *this;}
197 inline CreateBranchRequest& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
198 inline CreateBranchRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
199 inline CreateBranchRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
200 inline CreateBranchRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
201 inline CreateBranchRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
202 inline CreateBranchRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
203 inline CreateBranchRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
204 inline CreateBranchRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
206
208
211 inline const Aws::String& GetBuildSpec() const{ return m_buildSpec; }
212 inline bool BuildSpecHasBeenSet() const { return m_buildSpecHasBeenSet; }
213 inline void SetBuildSpec(const Aws::String& value) { m_buildSpecHasBeenSet = true; m_buildSpec = value; }
214 inline void SetBuildSpec(Aws::String&& value) { m_buildSpecHasBeenSet = true; m_buildSpec = std::move(value); }
215 inline void SetBuildSpec(const char* value) { m_buildSpecHasBeenSet = true; m_buildSpec.assign(value); }
216 inline CreateBranchRequest& WithBuildSpec(const Aws::String& value) { SetBuildSpec(value); return *this;}
217 inline CreateBranchRequest& WithBuildSpec(Aws::String&& value) { SetBuildSpec(std::move(value)); return *this;}
218 inline CreateBranchRequest& WithBuildSpec(const char* value) { SetBuildSpec(value); return *this;}
220
222
225 inline const Aws::String& GetTtl() const{ return m_ttl; }
226 inline bool TtlHasBeenSet() const { return m_ttlHasBeenSet; }
227 inline void SetTtl(const Aws::String& value) { m_ttlHasBeenSet = true; m_ttl = value; }
228 inline void SetTtl(Aws::String&& value) { m_ttlHasBeenSet = true; m_ttl = std::move(value); }
229 inline void SetTtl(const char* value) { m_ttlHasBeenSet = true; m_ttl.assign(value); }
230 inline CreateBranchRequest& WithTtl(const Aws::String& value) { SetTtl(value); return *this;}
231 inline CreateBranchRequest& WithTtl(Aws::String&& value) { SetTtl(std::move(value)); return *this;}
232 inline CreateBranchRequest& WithTtl(const char* value) { SetTtl(value); return *this;}
234
236
240 inline const Aws::String& GetDisplayName() const{ return m_displayName; }
241 inline bool DisplayNameHasBeenSet() const { return m_displayNameHasBeenSet; }
242 inline void SetDisplayName(const Aws::String& value) { m_displayNameHasBeenSet = true; m_displayName = value; }
243 inline void SetDisplayName(Aws::String&& value) { m_displayNameHasBeenSet = true; m_displayName = std::move(value); }
244 inline void SetDisplayName(const char* value) { m_displayNameHasBeenSet = true; m_displayName.assign(value); }
245 inline CreateBranchRequest& WithDisplayName(const Aws::String& value) { SetDisplayName(value); return *this;}
246 inline CreateBranchRequest& WithDisplayName(Aws::String&& value) { SetDisplayName(std::move(value)); return *this;}
247 inline CreateBranchRequest& WithDisplayName(const char* value) { SetDisplayName(value); return *this;}
249
251
254 inline bool GetEnablePullRequestPreview() const{ return m_enablePullRequestPreview; }
255 inline bool EnablePullRequestPreviewHasBeenSet() const { return m_enablePullRequestPreviewHasBeenSet; }
256 inline void SetEnablePullRequestPreview(bool value) { m_enablePullRequestPreviewHasBeenSet = true; m_enablePullRequestPreview = value; }
259
261
264 inline const Aws::String& GetPullRequestEnvironmentName() const{ return m_pullRequestEnvironmentName; }
265 inline bool PullRequestEnvironmentNameHasBeenSet() const { return m_pullRequestEnvironmentNameHasBeenSet; }
266 inline void SetPullRequestEnvironmentName(const Aws::String& value) { m_pullRequestEnvironmentNameHasBeenSet = true; m_pullRequestEnvironmentName = value; }
267 inline void SetPullRequestEnvironmentName(Aws::String&& value) { m_pullRequestEnvironmentNameHasBeenSet = true; m_pullRequestEnvironmentName = std::move(value); }
268 inline void SetPullRequestEnvironmentName(const char* value) { m_pullRequestEnvironmentNameHasBeenSet = true; m_pullRequestEnvironmentName.assign(value); }
271 inline CreateBranchRequest& WithPullRequestEnvironmentName(const char* value) { SetPullRequestEnvironmentName(value); return *this;}
273
275
281 inline const Aws::String& GetBackendEnvironmentArn() const{ return m_backendEnvironmentArn; }
282 inline bool BackendEnvironmentArnHasBeenSet() const { return m_backendEnvironmentArnHasBeenSet; }
283 inline void SetBackendEnvironmentArn(const Aws::String& value) { m_backendEnvironmentArnHasBeenSet = true; m_backendEnvironmentArn = value; }
284 inline void SetBackendEnvironmentArn(Aws::String&& value) { m_backendEnvironmentArnHasBeenSet = true; m_backendEnvironmentArn = std::move(value); }
285 inline void SetBackendEnvironmentArn(const char* value) { m_backendEnvironmentArnHasBeenSet = true; m_backendEnvironmentArn.assign(value); }
287 inline CreateBranchRequest& WithBackendEnvironmentArn(Aws::String&& value) { SetBackendEnvironmentArn(std::move(value)); return *this;}
288 inline CreateBranchRequest& WithBackendEnvironmentArn(const char* value) { SetBackendEnvironmentArn(value); return *this;}
290
292
298 inline const Backend& GetBackend() const{ return m_backend; }
299 inline bool BackendHasBeenSet() const { return m_backendHasBeenSet; }
300 inline void SetBackend(const Backend& value) { m_backendHasBeenSet = true; m_backend = value; }
301 inline void SetBackend(Backend&& value) { m_backendHasBeenSet = true; m_backend = std::move(value); }
302 inline CreateBranchRequest& WithBackend(const Backend& value) { SetBackend(value); return *this;}
303 inline CreateBranchRequest& WithBackend(Backend&& value) { SetBackend(std::move(value)); return *this;}
305 private:
306
307 Aws::String m_appId;
308 bool m_appIdHasBeenSet = false;
309
310 Aws::String m_branchName;
311 bool m_branchNameHasBeenSet = false;
312
313 Aws::String m_description;
314 bool m_descriptionHasBeenSet = false;
315
316 Stage m_stage;
317 bool m_stageHasBeenSet = false;
318
319 Aws::String m_framework;
320 bool m_frameworkHasBeenSet = false;
321
322 bool m_enableNotification;
323 bool m_enableNotificationHasBeenSet = false;
324
325 bool m_enableAutoBuild;
326 bool m_enableAutoBuildHasBeenSet = false;
327
328 Aws::Map<Aws::String, Aws::String> m_environmentVariables;
329 bool m_environmentVariablesHasBeenSet = false;
330
331 Aws::String m_basicAuthCredentials;
332 bool m_basicAuthCredentialsHasBeenSet = false;
333
334 bool m_enableBasicAuth;
335 bool m_enableBasicAuthHasBeenSet = false;
336
337 bool m_enablePerformanceMode;
338 bool m_enablePerformanceModeHasBeenSet = false;
339
341 bool m_tagsHasBeenSet = false;
342
343 Aws::String m_buildSpec;
344 bool m_buildSpecHasBeenSet = false;
345
346 Aws::String m_ttl;
347 bool m_ttlHasBeenSet = false;
348
349 Aws::String m_displayName;
350 bool m_displayNameHasBeenSet = false;
351
352 bool m_enablePullRequestPreview;
353 bool m_enablePullRequestPreviewHasBeenSet = false;
354
355 Aws::String m_pullRequestEnvironmentName;
356 bool m_pullRequestEnvironmentNameHasBeenSet = false;
357
358 Aws::String m_backendEnvironmentArn;
359 bool m_backendEnvironmentArnHasBeenSet = false;
360
361 Backend m_backend;
362 bool m_backendHasBeenSet = false;
363 };
364
365} // namespace Model
366} // namespace Amplify
367} // namespace Aws
CreateBranchRequest & WithBasicAuthCredentials(Aws::String &&value)
CreateBranchRequest & AddEnvironmentVariables(const Aws::String &key, const Aws::String &value)
const Aws::String & GetBackendEnvironmentArn() const
void SetBackendEnvironmentArn(Aws::String &&value)
CreateBranchRequest & WithDescription(const char *value)
void SetAppId(const Aws::String &value)
void SetBasicAuthCredentials(Aws::String &&value)
CreateBranchRequest & AddTags(const char *key, Aws::String &&value)
CreateBranchRequest & AddEnvironmentVariables(Aws::String &&key, const Aws::String &value)
void SetBackendEnvironmentArn(const Aws::String &value)
CreateBranchRequest & WithFramework(const Aws::String &value)
CreateBranchRequest & WithPullRequestEnvironmentName(Aws::String &&value)
void SetPullRequestEnvironmentName(const Aws::String &value)
CreateBranchRequest & AddEnvironmentVariables(Aws::String &&key, Aws::String &&value)
void SetBasicAuthCredentials(const Aws::String &value)
CreateBranchRequest & WithDescription(const Aws::String &value)
CreateBranchRequest & WithBuildSpec(const Aws::String &value)
CreateBranchRequest & WithFramework(Aws::String &&value)
CreateBranchRequest & WithBasicAuthCredentials(const Aws::String &value)
CreateBranchRequest & WithAppId(const char *value)
CreateBranchRequest & WithBranchName(Aws::String &&value)
CreateBranchRequest & WithEnablePerformanceMode(bool value)
CreateBranchRequest & WithDisplayName(Aws::String &&value)
CreateBranchRequest & AddTags(const Aws::String &key, Aws::String &&value)
CreateBranchRequest & AddTags(Aws::String &&key, const Aws::String &value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateBranchRequest & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateBranchRequest & WithBackend(const Backend &value)
CreateBranchRequest & WithEnablePullRequestPreview(bool value)
CreateBranchRequest & WithEnableBasicAuth(bool value)
void SetBranchName(const Aws::String &value)
const Aws::String & GetPullRequestEnvironmentName() const
void SetDescription(const Aws::String &value)
CreateBranchRequest & AddTags(const char *key, const char *value)
AWS_AMPLIFY_API Aws::String SerializePayload() const override
CreateBranchRequest & AddEnvironmentVariables(const char *key, Aws::String &&value)
CreateBranchRequest & WithBranchName(const char *value)
CreateBranchRequest & WithTtl(const char *value)
CreateBranchRequest & WithEnableAutoBuild(bool value)
CreateBranchRequest & AddTags(Aws::String &&key, const char *value)
CreateBranchRequest & WithPullRequestEnvironmentName(const char *value)
void SetPullRequestEnvironmentName(Aws::String &&value)
CreateBranchRequest & WithEnableNotification(bool value)
CreateBranchRequest & WithStage(const Stage &value)
CreateBranchRequest & WithTtl(Aws::String &&value)
void SetEnvironmentVariables(Aws::Map< Aws::String, Aws::String > &&value)
CreateBranchRequest & WithBackendEnvironmentArn(const char *value)
CreateBranchRequest & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateBranchRequest & WithFramework(const char *value)
CreateBranchRequest & WithDisplayName(const Aws::String &value)
CreateBranchRequest & WithPullRequestEnvironmentName(const Aws::String &value)
void SetBuildSpec(const Aws::String &value)
CreateBranchRequest & WithBackend(Backend &&value)
CreateBranchRequest & WithAppId(const Aws::String &value)
CreateBranchRequest & WithBasicAuthCredentials(const char *value)
CreateBranchRequest & AddTags(Aws::String &&key, Aws::String &&value)
CreateBranchRequest & WithBuildSpec(Aws::String &&value)
CreateBranchRequest & WithBackendEnvironmentArn(Aws::String &&value)
CreateBranchRequest & WithAppId(Aws::String &&value)
CreateBranchRequest & WithBackendEnvironmentArn(const Aws::String &value)
const Aws::Map< Aws::String, Aws::String > & GetEnvironmentVariables() const
CreateBranchRequest & WithTtl(const Aws::String &value)
CreateBranchRequest & WithBranchName(const Aws::String &value)
CreateBranchRequest & AddTags(const Aws::String &key, const Aws::String &value)
CreateBranchRequest & AddEnvironmentVariables(Aws::String &&key, const char *value)
CreateBranchRequest & WithDescription(Aws::String &&value)
CreateBranchRequest & WithEnvironmentVariables(const Aws::Map< Aws::String, Aws::String > &value)
CreateBranchRequest & WithEnvironmentVariables(Aws::Map< Aws::String, Aws::String > &&value)
const Aws::String & GetBasicAuthCredentials() const
CreateBranchRequest & AddEnvironmentVariables(const Aws::String &key, Aws::String &&value)
virtual const char * GetServiceRequestName() const override
void SetEnvironmentVariables(const Aws::Map< Aws::String, Aws::String > &value)
void SetPullRequestEnvironmentName(const char *value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateBranchRequest & WithBuildSpec(const char *value)
CreateBranchRequest & WithStage(Stage &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
void SetDisplayName(const Aws::String &value)
CreateBranchRequest & AddEnvironmentVariables(const char *key, const char *value)
CreateBranchRequest & WithDisplayName(const char *value)
void SetFramework(const Aws::String &value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String