/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that contains a system's definition document and summary
* information.See Also:
AWS
* API Reference
An object that contains summary information about a system.
*/ inline const SystemTemplateSummary& GetSummary() const{ return m_summary; } /** *An object that contains summary information about a system.
*/ inline bool SummaryHasBeenSet() const { return m_summaryHasBeenSet; } /** *An object that contains summary information about a system.
*/ inline void SetSummary(const SystemTemplateSummary& value) { m_summaryHasBeenSet = true; m_summary = value; } /** *An object that contains summary information about a system.
*/ inline void SetSummary(SystemTemplateSummary&& value) { m_summaryHasBeenSet = true; m_summary = std::move(value); } /** *An object that contains summary information about a system.
*/ inline SystemTemplateDescription& WithSummary(const SystemTemplateSummary& value) { SetSummary(value); return *this;} /** *An object that contains summary information about a system.
*/ inline SystemTemplateDescription& WithSummary(SystemTemplateSummary&& value) { SetSummary(std::move(value)); return *this;} /** *The definition document of a system.
*/ inline const DefinitionDocument& GetDefinition() const{ return m_definition; } /** *The definition document of a system.
*/ inline bool DefinitionHasBeenSet() const { return m_definitionHasBeenSet; } /** *The definition document of a system.
*/ inline void SetDefinition(const DefinitionDocument& value) { m_definitionHasBeenSet = true; m_definition = value; } /** *The definition document of a system.
*/ inline void SetDefinition(DefinitionDocument&& value) { m_definitionHasBeenSet = true; m_definition = std::move(value); } /** *The definition document of a system.
*/ inline SystemTemplateDescription& WithDefinition(const DefinitionDocument& value) { SetDefinition(value); return *this;} /** *The definition document of a system.
*/ inline SystemTemplateDescription& WithDefinition(DefinitionDocument&& value) { SetDefinition(std::move(value)); return *this;} /** *The namespace version against which the system was validated. Use this value * in your system instance.
*/ inline long long GetValidatedNamespaceVersion() const{ return m_validatedNamespaceVersion; } /** *The namespace version against which the system was validated. Use this value * in your system instance.
*/ inline bool ValidatedNamespaceVersionHasBeenSet() const { return m_validatedNamespaceVersionHasBeenSet; } /** *The namespace version against which the system was validated. Use this value * in your system instance.
*/ inline void SetValidatedNamespaceVersion(long long value) { m_validatedNamespaceVersionHasBeenSet = true; m_validatedNamespaceVersion = value; } /** *The namespace version against which the system was validated. Use this value * in your system instance.
*/ inline SystemTemplateDescription& WithValidatedNamespaceVersion(long long value) { SetValidatedNamespaceVersion(value); return *this;} private: SystemTemplateSummary m_summary; bool m_summaryHasBeenSet = false; DefinitionDocument m_definition; bool m_definitionHasBeenSet = false; long long m_validatedNamespaceVersion; bool m_validatedNamespaceVersionHasBeenSet = false; }; } // namespace Model } // namespace IoTThingsGraph } // namespace Aws