AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SystemTemplateDescription.h
1
6#pragma once
7#include <aws/iotthingsgraph/IoTThingsGraph_EXPORTS.h>
8#include <aws/iotthingsgraph/model/SystemTemplateSummary.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 SystemTemplateDescription();
37 AWS_IOTTHINGSGRAPH_API SystemTemplateDescription(Aws::Utils::Json::JsonView jsonValue);
39 AWS_IOTTHINGSGRAPH_API Aws::Utils::Json::JsonValue Jsonize() const;
40
41
43
46 inline const SystemTemplateSummary& GetSummary() const{ return m_summary; }
47 inline bool SummaryHasBeenSet() const { return m_summaryHasBeenSet; }
48 inline void SetSummary(const SystemTemplateSummary& value) { m_summaryHasBeenSet = true; m_summary = value; }
49 inline void SetSummary(SystemTemplateSummary&& value) { m_summaryHasBeenSet = true; m_summary = std::move(value); }
50 inline SystemTemplateDescription& WithSummary(const SystemTemplateSummary& value) { SetSummary(value); return *this;}
51 inline SystemTemplateDescription& WithSummary(SystemTemplateSummary&& 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 SystemTemplateDescription& WithDefinition(const DefinitionDocument& value) { SetDefinition(value); return *this;}
63 inline SystemTemplateDescription& 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 SystemTemplateSummary 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
SystemTemplateDescription & WithSummary(const SystemTemplateSummary &value)
AWS_IOTTHINGSGRAPH_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_IOTTHINGSGRAPH_API SystemTemplateDescription(Aws::Utils::Json::JsonView jsonValue)
SystemTemplateDescription & WithDefinition(const DefinitionDocument &value)
SystemTemplateDescription & WithValidatedNamespaceVersion(long long value)
SystemTemplateDescription & WithSummary(SystemTemplateSummary &&value)
SystemTemplateDescription & WithDefinition(DefinitionDocument &&value)
AWS_IOTTHINGSGRAPH_API SystemTemplateDescription & operator=(Aws::Utils::Json::JsonView jsonValue)
Aws::Utils::Json::JsonValue JsonValue