AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LastError.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 LastError();
35 AWS_EC2_API LastError(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_EC2_API LastError& 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& GetMessage() const{ return m_message; }
47 inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; }
48 inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; }
49 inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); }
50 inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); }
51 inline LastError& WithMessage(const Aws::String& value) { SetMessage(value); return *this;}
52 inline LastError& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;}
53 inline LastError& WithMessage(const char* value) { SetMessage(value); return *this;}
55
57
60 inline const Aws::String& GetCode() const{ return m_code; }
61 inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; }
62 inline void SetCode(const Aws::String& value) { m_codeHasBeenSet = true; m_code = value; }
63 inline void SetCode(Aws::String&& value) { m_codeHasBeenSet = true; m_code = std::move(value); }
64 inline void SetCode(const char* value) { m_codeHasBeenSet = true; m_code.assign(value); }
65 inline LastError& WithCode(const Aws::String& value) { SetCode(value); return *this;}
66 inline LastError& WithCode(Aws::String&& value) { SetCode(std::move(value)); return *this;}
67 inline LastError& WithCode(const char* value) { SetCode(value); return *this;}
69 private:
70
71 Aws::String m_message;
72 bool m_messageHasBeenSet = false;
73
74 Aws::String m_code;
75 bool m_codeHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace EC2
80} // namespace Aws
AWS_EC2_API LastError & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetCode() const
Definition LastError.h:60
AWS_EC2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_EC2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
LastError & WithMessage(Aws::String &&value)
Definition LastError.h:52
LastError & WithCode(Aws::String &&value)
Definition LastError.h:66
void SetMessage(const Aws::String &value)
Definition LastError.h:48
LastError & WithCode(const Aws::String &value)
Definition LastError.h:65
void SetCode(const Aws::String &value)
Definition LastError.h:62
bool CodeHasBeenSet() const
Definition LastError.h:61
LastError & WithMessage(const char *value)
Definition LastError.h:53
bool MessageHasBeenSet() const
Definition LastError.h:47
AWS_EC2_API LastError(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetCode(Aws::String &&value)
Definition LastError.h:63
void SetCode(const char *value)
Definition LastError.h:64
LastError & WithMessage(const Aws::String &value)
Definition LastError.h:51
const Aws::String & GetMessage() const
Definition LastError.h:46
void SetMessage(const char *value)
Definition LastError.h:50
void SetMessage(Aws::String &&value)
Definition LastError.h:49
LastError & WithCode(const char *value)
Definition LastError.h:67
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream