AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateApplicationVersionRequest.h
1
6#pragma once
7#include <aws/elasticbeanstalk/ElasticBeanstalk_EXPORTS.h>
8#include <aws/elasticbeanstalk/ElasticBeanstalkRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace ElasticBeanstalk
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_ELASTICBEANSTALK_API UpdateApplicationVersionRequest();
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "UpdateApplicationVersion"; }
34
35 AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39
40 public:
41
43
48 inline const Aws::String& GetApplicationName() const{ return m_applicationName; }
49 inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; }
50 inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; }
51 inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); }
52 inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); }
54 inline UpdateApplicationVersionRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;}
55 inline UpdateApplicationVersionRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;}
57
59
64 inline const Aws::String& GetVersionLabel() const{ return m_versionLabel; }
65 inline bool VersionLabelHasBeenSet() const { return m_versionLabelHasBeenSet; }
66 inline void SetVersionLabel(const Aws::String& value) { m_versionLabelHasBeenSet = true; m_versionLabel = value; }
67 inline void SetVersionLabel(Aws::String&& value) { m_versionLabelHasBeenSet = true; m_versionLabel = std::move(value); }
68 inline void SetVersionLabel(const char* value) { m_versionLabelHasBeenSet = true; m_versionLabel.assign(value); }
69 inline UpdateApplicationVersionRequest& WithVersionLabel(const Aws::String& value) { SetVersionLabel(value); return *this;}
70 inline UpdateApplicationVersionRequest& WithVersionLabel(Aws::String&& value) { SetVersionLabel(std::move(value)); return *this;}
71 inline UpdateApplicationVersionRequest& WithVersionLabel(const char* value) { SetVersionLabel(value); return *this;}
73
75
78 inline const Aws::String& GetDescription() const{ return m_description; }
79 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
80 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
81 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
82 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
83 inline UpdateApplicationVersionRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
84 inline UpdateApplicationVersionRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
85 inline UpdateApplicationVersionRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
87 private:
88
89 Aws::String m_applicationName;
90 bool m_applicationNameHasBeenSet = false;
91
92 Aws::String m_versionLabel;
93 bool m_versionLabelHasBeenSet = false;
94
95 Aws::String m_description;
96 bool m_descriptionHasBeenSet = false;
97 };
98
99} // namespace Model
100} // namespace ElasticBeanstalk
101} // namespace Aws
UpdateApplicationVersionRequest & WithApplicationName(const char *value)
AWS_ELASTICBEANSTALK_API Aws::String SerializePayload() const override
UpdateApplicationVersionRequest & WithDescription(const char *value)
UpdateApplicationVersionRequest & WithVersionLabel(Aws::String &&value)
UpdateApplicationVersionRequest & WithVersionLabel(const Aws::String &value)
UpdateApplicationVersionRequest & WithApplicationName(const Aws::String &value)
UpdateApplicationVersionRequest & WithApplicationName(Aws::String &&value)
UpdateApplicationVersionRequest & WithDescription(const Aws::String &value)
UpdateApplicationVersionRequest & WithDescription(Aws::String &&value)
AWS_ELASTICBEANSTALK_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
UpdateApplicationVersionRequest & WithVersionLabel(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String