AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LocationSummary.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
32 {
33 public:
34 AWS_ROUTE53_API LocationSummary();
35 AWS_ROUTE53_API LocationSummary(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_ROUTE53_API LocationSummary& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
39
40
42
45 inline const Aws::String& GetLocationName() const{ return m_locationName; }
46 inline bool LocationNameHasBeenSet() const { return m_locationNameHasBeenSet; }
47 inline void SetLocationName(const Aws::String& value) { m_locationNameHasBeenSet = true; m_locationName = value; }
48 inline void SetLocationName(Aws::String&& value) { m_locationNameHasBeenSet = true; m_locationName = std::move(value); }
49 inline void SetLocationName(const char* value) { m_locationNameHasBeenSet = true; m_locationName.assign(value); }
50 inline LocationSummary& WithLocationName(const Aws::String& value) { SetLocationName(value); return *this;}
51 inline LocationSummary& WithLocationName(Aws::String&& value) { SetLocationName(std::move(value)); return *this;}
52 inline LocationSummary& WithLocationName(const char* value) { SetLocationName(value); return *this;}
54 private:
55
56 Aws::String m_locationName;
57 bool m_locationNameHasBeenSet = false;
58 };
59
60} // namespace Model
61} // namespace Route53
62} // namespace Aws
LocationSummary & WithLocationName(Aws::String &&value)
const Aws::String & GetLocationName() const
LocationSummary & WithLocationName(const Aws::String &value)
AWS_ROUTE53_API LocationSummary(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetLocationName(const char *value)
void SetLocationName(const Aws::String &value)
AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
AWS_ROUTE53_API LocationSummary & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetLocationName(Aws::String &&value)
LocationSummary & WithLocationName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String