AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ModuleInfo.h
1
6#pragma once
7#include <aws/cloudformation/CloudFormation_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 CloudFormation
22{
23namespace Model
24{
25
38 {
39 public:
40 AWS_CLOUDFORMATION_API ModuleInfo();
41 AWS_CLOUDFORMATION_API ModuleInfo(const Aws::Utils::Xml::XmlNode& xmlNode);
42 AWS_CLOUDFORMATION_API ModuleInfo& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
43
44 AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
45 AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
46
47
49
58 inline const Aws::String& GetTypeHierarchy() const{ return m_typeHierarchy; }
59 inline bool TypeHierarchyHasBeenSet() const { return m_typeHierarchyHasBeenSet; }
60 inline void SetTypeHierarchy(const Aws::String& value) { m_typeHierarchyHasBeenSet = true; m_typeHierarchy = value; }
61 inline void SetTypeHierarchy(Aws::String&& value) { m_typeHierarchyHasBeenSet = true; m_typeHierarchy = std::move(value); }
62 inline void SetTypeHierarchy(const char* value) { m_typeHierarchyHasBeenSet = true; m_typeHierarchy.assign(value); }
63 inline ModuleInfo& WithTypeHierarchy(const Aws::String& value) { SetTypeHierarchy(value); return *this;}
64 inline ModuleInfo& WithTypeHierarchy(Aws::String&& value) { SetTypeHierarchy(std::move(value)); return *this;}
65 inline ModuleInfo& WithTypeHierarchy(const char* value) { SetTypeHierarchy(value); return *this;}
67
69
80 inline const Aws::String& GetLogicalIdHierarchy() const{ return m_logicalIdHierarchy; }
81 inline bool LogicalIdHierarchyHasBeenSet() const { return m_logicalIdHierarchyHasBeenSet; }
82 inline void SetLogicalIdHierarchy(const Aws::String& value) { m_logicalIdHierarchyHasBeenSet = true; m_logicalIdHierarchy = value; }
83 inline void SetLogicalIdHierarchy(Aws::String&& value) { m_logicalIdHierarchyHasBeenSet = true; m_logicalIdHierarchy = std::move(value); }
84 inline void SetLogicalIdHierarchy(const char* value) { m_logicalIdHierarchyHasBeenSet = true; m_logicalIdHierarchy.assign(value); }
85 inline ModuleInfo& WithLogicalIdHierarchy(const Aws::String& value) { SetLogicalIdHierarchy(value); return *this;}
86 inline ModuleInfo& WithLogicalIdHierarchy(Aws::String&& value) { SetLogicalIdHierarchy(std::move(value)); return *this;}
87 inline ModuleInfo& WithLogicalIdHierarchy(const char* value) { SetLogicalIdHierarchy(value); return *this;}
89 private:
90
91 Aws::String m_typeHierarchy;
92 bool m_typeHierarchyHasBeenSet = false;
93
94 Aws::String m_logicalIdHierarchy;
95 bool m_logicalIdHierarchyHasBeenSet = false;
96 };
97
98} // namespace Model
99} // namespace CloudFormation
100} // namespace Aws
void SetLogicalIdHierarchy(const char *value)
Definition ModuleInfo.h:84
AWS_CLOUDFORMATION_API ModuleInfo(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetTypeHierarchy() const
Definition ModuleInfo.h:58
ModuleInfo & WithTypeHierarchy(Aws::String &&value)
Definition ModuleInfo.h:64
ModuleInfo & WithTypeHierarchy(const char *value)
Definition ModuleInfo.h:65
AWS_CLOUDFORMATION_API ModuleInfo & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetTypeHierarchy(Aws::String &&value)
Definition ModuleInfo.h:61
ModuleInfo & WithLogicalIdHierarchy(Aws::String &&value)
Definition ModuleInfo.h:86
void SetTypeHierarchy(const char *value)
Definition ModuleInfo.h:62
void SetLogicalIdHierarchy(Aws::String &&value)
Definition ModuleInfo.h:83
void SetTypeHierarchy(const Aws::String &value)
Definition ModuleInfo.h:60
void SetLogicalIdHierarchy(const Aws::String &value)
Definition ModuleInfo.h:82
ModuleInfo & WithTypeHierarchy(const Aws::String &value)
Definition ModuleInfo.h:63
AWS_CLOUDFORMATION_API ModuleInfo()
const Aws::String & GetLogicalIdHierarchy() const
Definition ModuleInfo.h:80
ModuleInfo & WithLogicalIdHierarchy(const char *value)
Definition ModuleInfo.h:87
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
ModuleInfo & WithLogicalIdHierarchy(const Aws::String &value)
Definition ModuleInfo.h:85
AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream &oStream, const char *location) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream