AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
FlowTemplateDescription.h
1
6#pragma once
7#include <aws/iotthingsgraph/IoTThingsGraph_EXPORTS.h>
8#include <aws/iotthingsgraph/model/FlowTemplateSummary.h>
9#include <aws/iotthingsgraph/model/DefinitionDocument.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 IoTThingsGraph
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_IOTTHINGSGRAPH_API FlowTemplateDescription();
37 AWS_IOTTHINGSGRAPH_API FlowTemplateDescription(Aws::Utils::Json::JsonView jsonValue);
39 AWS_IOTTHINGSGRAPH_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const FlowTemplateSummary& GetSummary() const{ return m_summary; }
47 inline bool SummaryHasBeenSet() const { return m_summaryHasBeenSet; }
48 inline void SetSummary(const FlowTemplateSummary& value) { m_summaryHasBeenSet = true; m_summary = value; }
49 inline void SetSummary(FlowTemplateSummary&& value) { m_summaryHasBeenSet = true; m_summary = std::move(value); }
50 inline FlowTemplateDescription& WithSummary(const FlowTemplateSummary& value) { SetSummary(value); return *this;}
51 inline FlowTemplateDescription& WithSummary(FlowTemplateSummary&& value) { SetSummary(std::move(value)); return *this;}
53
55
58 inline const DefinitionDocument& GetDefinition() const{ return m_definition; }
59 inline bool DefinitionHasBeenSet() const { return m_definitionHasBeenSet; }
60 inline void SetDefinition(const DefinitionDocument& value) { m_definitionHasBeenSet = true; m_definition = value; }
61 inline void SetDefinition(DefinitionDocument&& value) { m_definitionHasBeenSet = true; m_definition = std::move(value); }
62 inline FlowTemplateDescription& WithDefinition(const DefinitionDocument& value) { SetDefinition(value); return *this;}
63 inline FlowTemplateDescription& WithDefinition(DefinitionDocument&& value) { SetDefinition(std::move(value)); return *this;}
65
67
71 inline long long GetValidatedNamespaceVersion() const{ return m_validatedNamespaceVersion; }
72 inline bool ValidatedNamespaceVersionHasBeenSet() const { return m_validatedNamespaceVersionHasBeenSet; }
73 inline void SetValidatedNamespaceVersion(long long value) { m_validatedNamespaceVersionHasBeenSet = true; m_validatedNamespaceVersion = value; }
76 private:
77
78 FlowTemplateSummary m_summary;
79 bool m_summaryHasBeenSet = false;
80
81 DefinitionDocument m_definition;
82 bool m_definitionHasBeenSet = false;
83
84 long long m_validatedNamespaceVersion;
85 bool m_validatedNamespaceVersionHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace IoTThingsGraph
90} // namespace Aws
AWS_IOTTHINGSGRAPH_API Aws::Utils::Json::JsonValue Jsonize() const
FlowTemplateDescription & WithValidatedNamespaceVersion(long long value)
FlowTemplateDescription & WithDefinition(const DefinitionDocument &value)
AWS_IOTTHINGSGRAPH_API FlowTemplateDescription & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_IOTTHINGSGRAPH_API FlowTemplateDescription(Aws::Utils::Json::JsonView jsonValue)
FlowTemplateDescription & WithDefinition(DefinitionDocument &&value)
FlowTemplateDescription & WithSummary(const FlowTemplateSummary &value)
FlowTemplateDescription & WithSummary(FlowTemplateSummary &&value)
Aws::Utils::Json::JsonValue JsonValue