AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ResourceRecord.h
1
6#pragma once
7#include <aws/route53/Route53_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Xml
16{
17 class XmlNode;
18} // namespace Xml
19} // namespace Utils
20namespace Route53
21{
22namespace Model
23{
24
33 {
34 public:
35 AWS_ROUTE53_API ResourceRecord();
36 AWS_ROUTE53_API ResourceRecord(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_ROUTE53_API ResourceRecord& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
40
41
43
54 inline const Aws::String& GetValue() const{ return m_value; }
55 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
56 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
57 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
58 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
59 inline ResourceRecord& WithValue(const Aws::String& value) { SetValue(value); return *this;}
60 inline ResourceRecord& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
61 inline ResourceRecord& WithValue(const char* value) { SetValue(value); return *this;}
63 private:
64
65 Aws::String m_value;
66 bool m_valueHasBeenSet = false;
67 };
68
69} // namespace Model
70} // namespace Route53
71} // namespace Aws
ResourceRecord & WithValue(const Aws::String &value)
ResourceRecord & WithValue(const char *value)
AWS_ROUTE53_API ResourceRecord & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
ResourceRecord & WithValue(Aws::String &&value)
void SetValue(const char *value)
void SetValue(Aws::String &&value)
AWS_ROUTE53_API ResourceRecord(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetValue() const
void SetValue(const Aws::String &value)
AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String