AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
ConnectorEntity.h
1
6#pragma once
7#include <aws/appflow/Appflow_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <utility>
10
11namespace Aws
12{
13namespace Utils
14{
15namespace Json
16{
17 class JsonValue;
18 class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Appflow
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_APPFLOW_API ConnectorEntity() = default;
37 AWS_APPFLOW_API ConnectorEntity(Aws::Utils::Json::JsonView jsonValue);
39 AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const Aws::String& GetName() const { return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 template<typename NameT = Aws::String>
49 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
50 template<typename NameT = Aws::String>
51 ConnectorEntity& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
53
55
58 inline const Aws::String& GetLabel() const { return m_label; }
59 inline bool LabelHasBeenSet() const { return m_labelHasBeenSet; }
60 template<typename LabelT = Aws::String>
61 void SetLabel(LabelT&& value) { m_labelHasBeenSet = true; m_label = std::forward<LabelT>(value); }
62 template<typename LabelT = Aws::String>
63 ConnectorEntity& WithLabel(LabelT&& value) { SetLabel(std::forward<LabelT>(value)); return *this;}
65
67
75 inline bool GetHasNestedEntities() const { return m_hasNestedEntities; }
76 inline bool HasNestedEntitiesHasBeenSet() const { return m_hasNestedEntitiesHasBeenSet; }
77 inline void SetHasNestedEntities(bool value) { m_hasNestedEntitiesHasBeenSet = true; m_hasNestedEntities = value; }
78 inline ConnectorEntity& WithHasNestedEntities(bool value) { SetHasNestedEntities(value); return *this;}
80 private:
81
82 Aws::String m_name;
83 bool m_nameHasBeenSet = false;
84
85 Aws::String m_label;
86 bool m_labelHasBeenSet = false;
87
88 bool m_hasNestedEntities{false};
89 bool m_hasNestedEntitiesHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace Appflow
94} // namespace Aws
AWS_APPFLOW_API ConnectorEntity()=default
const Aws::String & GetLabel() const
ConnectorEntity & WithName(NameT &&value)
ConnectorEntity & WithLabel(LabelT &&value)
const Aws::String & GetName() const
ConnectorEntity & WithHasNestedEntities(bool value)
AWS_APPFLOW_API ConnectorEntity(Aws::Utils::Json::JsonView jsonValue)
AWS_APPFLOW_API ConnectorEntity & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_APPFLOW_API Aws::Utils::Json::JsonValue Jsonize() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue