AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DocLink.h
1
6#pragma once
7#include <aws/rds/RDS_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 RDS
22{
23namespace Model
24{
25
32 class DocLink
33 {
34 public:
35 AWS_RDS_API DocLink() = default;
36 AWS_RDS_API DocLink(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_RDS_API DocLink& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_RDS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_RDS_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
47 inline const Aws::String& GetText() const { return m_text; }
48 inline bool TextHasBeenSet() const { return m_textHasBeenSet; }
49 template<typename TextT = Aws::String>
50 void SetText(TextT&& value) { m_textHasBeenSet = true; m_text = std::forward<TextT>(value); }
51 template<typename TextT = Aws::String>
52 DocLink& WithText(TextT&& value) { SetText(std::forward<TextT>(value)); return *this;}
54
56
59 inline const Aws::String& GetUrl() const { return m_url; }
60 inline bool UrlHasBeenSet() const { return m_urlHasBeenSet; }
61 template<typename UrlT = Aws::String>
62 void SetUrl(UrlT&& value) { m_urlHasBeenSet = true; m_url = std::forward<UrlT>(value); }
63 template<typename UrlT = Aws::String>
64 DocLink& WithUrl(UrlT&& value) { SetUrl(std::forward<UrlT>(value)); return *this;}
66 private:
67
68 Aws::String m_text;
69 bool m_textHasBeenSet = false;
70
71 Aws::String m_url;
72 bool m_urlHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace RDS
77} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream