AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
PlatformProgrammingLanguage.h
1
6#pragma once
7#include <aws/elasticbeanstalk/ElasticBeanstalk_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace ElasticBeanstalk
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_ELASTICBEANSTALK_API PlatformProgrammingLanguage();
36 AWS_ELASTICBEANSTALK_API PlatformProgrammingLanguage(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_ELASTICBEANSTALK_API PlatformProgrammingLanguage& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
47 inline const Aws::String& GetName() const{ return m_name; }
48 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
49 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
50 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
51 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
52 inline PlatformProgrammingLanguage& WithName(const Aws::String& value) { SetName(value); return *this;}
53 inline PlatformProgrammingLanguage& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
54 inline PlatformProgrammingLanguage& WithName(const char* value) { SetName(value); return *this;}
56
58
61 inline const Aws::String& GetVersion() const{ return m_version; }
62 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
63 inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
64 inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
65 inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
66 inline PlatformProgrammingLanguage& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
67 inline PlatformProgrammingLanguage& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
68 inline PlatformProgrammingLanguage& WithVersion(const char* value) { SetVersion(value); return *this;}
70 private:
71
72 Aws::String m_name;
73 bool m_nameHasBeenSet = false;
74
75 Aws::String m_version;
76 bool m_versionHasBeenSet = false;
77 };
78
79} // namespace Model
80} // namespace ElasticBeanstalk
81} // namespace Aws
AWS_ELASTICBEANSTALK_API PlatformProgrammingLanguage(const Aws::Utils::Xml::XmlNode &xmlNode)
PlatformProgrammingLanguage & WithName(Aws::String &&value)
PlatformProgrammingLanguage & WithName(const Aws::String &value)
AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
PlatformProgrammingLanguage & WithName(const char *value)
AWS_ELASTICBEANSTALK_API PlatformProgrammingLanguage & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
PlatformProgrammingLanguage & WithVersion(const char *value)
AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream &oStream, const char *location) const
PlatformProgrammingLanguage & WithVersion(Aws::String &&value)
PlatformProgrammingLanguage & WithVersion(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream