AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CharacterSet.h
1
6#pragma once
7#include <aws/neptune/Neptune_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 Neptune
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_NEPTUNE_API CharacterSet();
35 AWS_NEPTUNE_API CharacterSet(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_NEPTUNE_API CharacterSet& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetCharacterSetName() const{ return m_characterSetName; }
47 inline bool CharacterSetNameHasBeenSet() const { return m_characterSetNameHasBeenSet; }
48 inline void SetCharacterSetName(const Aws::String& value) { m_characterSetNameHasBeenSet = true; m_characterSetName = value; }
49 inline void SetCharacterSetName(Aws::String&& value) { m_characterSetNameHasBeenSet = true; m_characterSetName = std::move(value); }
50 inline void SetCharacterSetName(const char* value) { m_characterSetNameHasBeenSet = true; m_characterSetName.assign(value); }
51 inline CharacterSet& WithCharacterSetName(const Aws::String& value) { SetCharacterSetName(value); return *this;}
52 inline CharacterSet& WithCharacterSetName(Aws::String&& value) { SetCharacterSetName(std::move(value)); return *this;}
53 inline CharacterSet& WithCharacterSetName(const char* value) { SetCharacterSetName(value); return *this;}
55
57
60 inline const Aws::String& GetCharacterSetDescription() const{ return m_characterSetDescription; }
61 inline bool CharacterSetDescriptionHasBeenSet() const { return m_characterSetDescriptionHasBeenSet; }
62 inline void SetCharacterSetDescription(const Aws::String& value) { m_characterSetDescriptionHasBeenSet = true; m_characterSetDescription = value; }
63 inline void SetCharacterSetDescription(Aws::String&& value) { m_characterSetDescriptionHasBeenSet = true; m_characterSetDescription = std::move(value); }
64 inline void SetCharacterSetDescription(const char* value) { m_characterSetDescriptionHasBeenSet = true; m_characterSetDescription.assign(value); }
66 inline CharacterSet& WithCharacterSetDescription(Aws::String&& value) { SetCharacterSetDescription(std::move(value)); return *this;}
67 inline CharacterSet& WithCharacterSetDescription(const char* value) { SetCharacterSetDescription(value); return *this;}
69 private:
70
71 Aws::String m_characterSetName;
72 bool m_characterSetNameHasBeenSet = false;
73
74 Aws::String m_characterSetDescription;
75 bool m_characterSetDescriptionHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace Neptune
80} // namespace Aws
void SetCharacterSetDescription(const char *value)
AWS_NEPTUNE_API CharacterSet(const Aws::Utils::Xml::XmlNode &xmlNode)
CharacterSet & WithCharacterSetName(const Aws::String &value)
void SetCharacterSetDescription(Aws::String &&value)
CharacterSet & WithCharacterSetName(const char *value)
void SetCharacterSetName(Aws::String &&value)
AWS_NEPTUNE_API CharacterSet & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
CharacterSet & WithCharacterSetDescription(const Aws::String &value)
CharacterSet & WithCharacterSetDescription(Aws::String &&value)
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &oStream, const char *location) const
bool CharacterSetDescriptionHasBeenSet() const
void SetCharacterSetName(const Aws::String &value)
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
const Aws::String & GetCharacterSetName() const
CharacterSet & WithCharacterSetName(Aws::String &&value)
const Aws::String & GetCharacterSetDescription() const
void SetCharacterSetDescription(const Aws::String &value)
CharacterSet & WithCharacterSetDescription(const char *value)
void SetCharacterSetName(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream