AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
Builder.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
31 class Builder
32 {
33 public:
34 AWS_ELASTICBEANSTALK_API Builder();
35 AWS_ELASTICBEANSTALK_API Builder(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_ELASTICBEANSTALK_API Builder& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetARN() const{ return m_aRN; }
47 inline bool ARNHasBeenSet() const { return m_aRNHasBeenSet; }
48 inline void SetARN(const Aws::String& value) { m_aRNHasBeenSet = true; m_aRN = value; }
49 inline void SetARN(Aws::String&& value) { m_aRNHasBeenSet = true; m_aRN = std::move(value); }
50 inline void SetARN(const char* value) { m_aRNHasBeenSet = true; m_aRN.assign(value); }
51 inline Builder& WithARN(const Aws::String& value) { SetARN(value); return *this;}
52 inline Builder& WithARN(Aws::String&& value) { SetARN(std::move(value)); return *this;}
53 inline Builder& WithARN(const char* value) { SetARN(value); return *this;}
55 private:
56
57 Aws::String m_aRN;
58 bool m_aRNHasBeenSet = false;
59 };
60
61} // namespace Model
62} // namespace ElasticBeanstalk
63} // namespace Aws
AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_ELASTICBEANSTALK_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
Builder & WithARN(const char *value)
Definition Builder.h:53
void SetARN(const Aws::String &value)
Definition Builder.h:48
Builder & WithARN(const Aws::String &value)
Definition Builder.h:51
Builder & WithARN(Aws::String &&value)
Definition Builder.h:52
void SetARN(const char *value)
Definition Builder.h:50
AWS_ELASTICBEANSTALK_API Builder & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_ELASTICBEANSTALK_API Builder()
const Aws::String & GetARN() const
Definition Builder.h:46
AWS_ELASTICBEANSTALK_API Builder(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetARN(Aws::String &&value)
Definition Builder.h:49
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream