AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
StateReason.h
1
6#pragma once
7#include <aws/ec2/EC2_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 EC2
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_EC2_API StateReason();
35 AWS_EC2_API StateReason(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_EC2_API StateReason& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetCode() const{ return m_code; }
47 inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; }
48 inline void SetCode(const Aws::String& value) { m_codeHasBeenSet = true; m_code = value; }
49 inline void SetCode(Aws::String&& value) { m_codeHasBeenSet = true; m_code = std::move(value); }
50 inline void SetCode(const char* value) { m_codeHasBeenSet = true; m_code.assign(value); }
51 inline StateReason& WithCode(const Aws::String& value) { SetCode(value); return *this;}
52 inline StateReason& WithCode(Aws::String&& value) { SetCode(std::move(value)); return *this;}
53 inline StateReason& WithCode(const char* value) { SetCode(value); return *this;}
55
57
84 inline const Aws::String& GetMessage() const{ return m_message; }
85 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
86 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
87 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
88 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
89 inline StateReason& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
90 inline StateReason& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
91 inline StateReason& WithMessage(const char* value) { SetMessage(value); return *this;}
93 private:
94
95 Aws::String m_code;
96 bool m_codeHasBeenSet = false;
97
98 Aws::String m_message;
99 bool m_messageHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace EC2
104} // namespace Aws
const Aws::String & GetCode() const
Definition StateReason.h:46
StateReason & WithMessage(const Aws::String &value)
Definition StateReason.h:89
void SetCode(const char *value)
Definition StateReason.h:50
void SetCode(const Aws::String &value)
Definition StateReason.h:48
const Aws::String & GetMessage() const
Definition StateReason.h:84
StateReason & WithMessage(Aws::String &&value)
Definition StateReason.h:90
StateReason & WithCode(Aws::String &&value)
Definition StateReason.h:52
void SetCode(Aws::String &&value)
Definition StateReason.h:49
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_EC2_API StateReason(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetMessage(Aws::String &&value)
Definition StateReason.h:87
AWS_EC2_API StateReason & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
StateReason & WithMessage(const char *value)
Definition StateReason.h:91
void SetMessage(const Aws::String &value)
Definition StateReason.h:86
void SetMessage(const char *value)
Definition StateReason.h:88
StateReason & WithCode(const char *value)
Definition StateReason.h:53
StateReason & WithCode(const Aws::String &value)
Definition StateReason.h:51
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream