AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
OrganizationNode.h
1
6#pragma once
7#include <aws/servicecatalog/ServiceCatalog_EXPORTS.h>
8#include <aws/servicecatalog/model/OrganizationNodeType.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Json
17{
18 class JsonValue;
19 class JsonView;
20} // namespace Json
21} // namespace Utils
22namespace ServiceCatalog
23{
24namespace Model
25{
26
33 {
34 public:
35 AWS_SERVICECATALOG_API OrganizationNode() = default;
36 AWS_SERVICECATALOG_API OrganizationNode(Aws::Utils::Json::JsonView jsonValue);
37 AWS_SERVICECATALOG_API OrganizationNode& operator=(Aws::Utils::Json::JsonView jsonValue);
38 AWS_SERVICECATALOG_API Aws::Utils::Json::JsonValue Jsonize() const;
39
40
42
45 inline OrganizationNodeType GetType() const { return m_type; }
46 inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; }
47 inline void SetType(OrganizationNodeType value) { m_typeHasBeenSet = true; m_type = value; }
48 inline OrganizationNode& WithType(OrganizationNodeType value) { SetType(value); return *this;}
50
52
55 inline const Aws::String& GetValue() const { return m_value; }
56 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
57 template<typename ValueT = Aws::String>
58 void SetValue(ValueT&& value) { m_valueHasBeenSet = true; m_value = std::forward<ValueT>(value); }
59 template<typename ValueT = Aws::String>
60 OrganizationNode& WithValue(ValueT&& value) { SetValue(std::forward<ValueT>(value)); return *this;}
62 private:
63
65 bool m_typeHasBeenSet = false;
66
67 Aws::String m_value;
68 bool m_valueHasBeenSet = false;
69 };
70
71} // namespace Model
72} // namespace ServiceCatalog
73} // namespace Aws
OrganizationNode & WithValue(ValueT &&value)
AWS_SERVICECATALOG_API OrganizationNode & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetType(OrganizationNodeType value)
AWS_SERVICECATALOG_API Aws::Utils::Json::JsonValue Jsonize() const
OrganizationNode & WithType(OrganizationNodeType value)
AWS_SERVICECATALOG_API OrganizationNode(Aws::Utils::Json::JsonView jsonValue)
AWS_SERVICECATALOG_API OrganizationNode()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue