AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
LinkedService.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
34 {
35 public:
36 AWS_ROUTE53_API LinkedService();
37 AWS_ROUTE53_API LinkedService(const Aws::Utils::Xml::XmlNode& xmlNode);
38 AWS_ROUTE53_API LinkedService& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const;
41
42
44
49 inline const Aws::String& GetServicePrincipal() const{ return m_servicePrincipal; }
50 inline bool ServicePrincipalHasBeenSet() const { return m_servicePrincipalHasBeenSet; }
51 inline void SetServicePrincipal(const Aws::String& value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal = value; }
52 inline void SetServicePrincipal(Aws::String&& value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal = std::move(value); }
53 inline void SetServicePrincipal(const char* value) { m_servicePrincipalHasBeenSet = true; m_servicePrincipal.assign(value); }
54 inline LinkedService& WithServicePrincipal(const Aws::String& value) { SetServicePrincipal(value); return *this;}
55 inline LinkedService& WithServicePrincipal(Aws::String&& value) { SetServicePrincipal(std::move(value)); return *this;}
56 inline LinkedService& WithServicePrincipal(const char* value) { SetServicePrincipal(value); return *this;}
58
60
66 inline const Aws::String& GetDescription() const{ return m_description; }
67 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
68 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
69 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
70 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
71 inline LinkedService& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
72 inline LinkedService& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
73 inline LinkedService& WithDescription(const char* value) { SetDescription(value); return *this;}
75 private:
76
77 Aws::String m_servicePrincipal;
78 bool m_servicePrincipalHasBeenSet = false;
79
80 Aws::String m_description;
81 bool m_descriptionHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace Route53
86} // namespace Aws
LinkedService & WithDescription(const Aws::String &value)
void SetDescription(Aws::String &&value)
AWS_ROUTE53_API LinkedService(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetDescription(const char *value)
void SetDescription(const Aws::String &value)
const Aws::String & GetServicePrincipal() const
AWS_ROUTE53_API LinkedService & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
LinkedService & WithServicePrincipal(Aws::String &&value)
LinkedService & WithServicePrincipal(const Aws::String &value)
AWS_ROUTE53_API void AddToNode(Aws::Utils::Xml::XmlNode &parentNode) const
LinkedService & WithServicePrincipal(const char *value)
const Aws::String & GetDescription() const
LinkedService & WithDescription(const char *value)
LinkedService & WithDescription(Aws::String &&value)
void SetServicePrincipal(const Aws::String &value)
void SetServicePrincipal(const char *value)
void SetServicePrincipal(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String