AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LaunchTemplateSpecification.h
1
6#pragma once
7#include <aws/autoscaling/AutoScaling_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 AutoScaling
22{
23namespace Model
24{
25
37 {
38 public:
39 AWS_AUTOSCALING_API LaunchTemplateSpecification();
40 AWS_AUTOSCALING_API LaunchTemplateSpecification(const Aws::Utils::Xml::XmlNode& xmlNode);
42
43 AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
44 AWS_AUTOSCALING_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
45
46
48
56 inline const Aws::String& GetLaunchTemplateId() const{ return m_launchTemplateId; }
57 inline bool LaunchTemplateIdHasBeenSet() const { return m_launchTemplateIdHasBeenSet; }
58 inline void SetLaunchTemplateId(const Aws::String& value) { m_launchTemplateIdHasBeenSet = true; m_launchTemplateId = value; }
59 inline void SetLaunchTemplateId(Aws::String&& value) { m_launchTemplateIdHasBeenSet = true; m_launchTemplateId = std::move(value); }
60 inline void SetLaunchTemplateId(const char* value) { m_launchTemplateIdHasBeenSet = true; m_launchTemplateId.assign(value); }
62 inline LaunchTemplateSpecification& WithLaunchTemplateId(Aws::String&& value) { SetLaunchTemplateId(std::move(value)); return *this;}
63 inline LaunchTemplateSpecification& WithLaunchTemplateId(const char* value) { SetLaunchTemplateId(value); return *this;}
65
67
76 inline const Aws::String& GetLaunchTemplateName() const{ return m_launchTemplateName; }
77 inline bool LaunchTemplateNameHasBeenSet() const { return m_launchTemplateNameHasBeenSet; }
78 inline void SetLaunchTemplateName(const Aws::String& value) { m_launchTemplateNameHasBeenSet = true; m_launchTemplateName = value; }
79 inline void SetLaunchTemplateName(Aws::String&& value) { m_launchTemplateNameHasBeenSet = true; m_launchTemplateName = std::move(value); }
80 inline void SetLaunchTemplateName(const char* value) { m_launchTemplateNameHasBeenSet = true; m_launchTemplateName.assign(value); }
82 inline LaunchTemplateSpecification& WithLaunchTemplateName(Aws::String&& value) { SetLaunchTemplateName(std::move(value)); return *this;}
83 inline LaunchTemplateSpecification& WithLaunchTemplateName(const char* value) { SetLaunchTemplateName(value); return *this;}
85
87
100 inline const Aws::String& GetVersion() const{ return m_version; }
101 inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
102 inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
103 inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
104 inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
105 inline LaunchTemplateSpecification& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
106 inline LaunchTemplateSpecification& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
107 inline LaunchTemplateSpecification& WithVersion(const char* value) { SetVersion(value); return *this;}
109 private:
110
111 Aws::String m_launchTemplateId;
112 bool m_launchTemplateIdHasBeenSet = false;
113
114 Aws::String m_launchTemplateName;
115 bool m_launchTemplateNameHasBeenSet = false;
116
117 Aws::String m_version;
118 bool m_versionHasBeenSet = false;
119 };
120
121} // namespace Model
122} // namespace AutoScaling
123} // namespace Aws
AWS_AUTOSCALING_API LaunchTemplateSpecification & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
LaunchTemplateSpecification & WithLaunchTemplateId(Aws::String &&value)
LaunchTemplateSpecification & WithLaunchTemplateName(const char *value)
LaunchTemplateSpecification & WithLaunchTemplateId(const Aws::String &value)
AWS_AUTOSCALING_API void OutputToStream(Aws::OStream &oStream, const char *location) const
LaunchTemplateSpecification & WithVersion(const char *value)
LaunchTemplateSpecification & WithVersion(Aws::String &&value)
LaunchTemplateSpecification & WithLaunchTemplateId(const char *value)
AWS_AUTOSCALING_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
LaunchTemplateSpecification & WithLaunchTemplateName(Aws::String &&value)
AWS_AUTOSCALING_API LaunchTemplateSpecification(const Aws::Utils::Xml::XmlNode &xmlNode)
LaunchTemplateSpecification & WithVersion(const Aws::String &value)
LaunchTemplateSpecification & WithLaunchTemplateName(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