/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The detailed data about the current state of the service
* pipeline.See Also:
AWS
* API Reference
The service spec that was used to create the service pipeline.
*/ inline const Aws::String& GetSpec() const{ return m_spec; } /** *The service spec that was used to create the service pipeline.
*/ inline bool SpecHasBeenSet() const { return m_specHasBeenSet; } /** *The service spec that was used to create the service pipeline.
*/ inline void SetSpec(const Aws::String& value) { m_specHasBeenSet = true; m_spec = value; } /** *The service spec that was used to create the service pipeline.
*/ inline void SetSpec(Aws::String&& value) { m_specHasBeenSet = true; m_spec = std::move(value); } /** *The service spec that was used to create the service pipeline.
*/ inline void SetSpec(const char* value) { m_specHasBeenSet = true; m_spec.assign(value); } /** *The service spec that was used to create the service pipeline.
*/ inline ServicePipelineState& WithSpec(const Aws::String& value) { SetSpec(value); return *this;} /** *The service spec that was used to create the service pipeline.
*/ inline ServicePipelineState& WithSpec(Aws::String&& value) { SetSpec(std::move(value)); return *this;} /** *The service spec that was used to create the service pipeline.
*/ inline ServicePipelineState& WithSpec(const char* value) { SetSpec(value); return *this;} /** *The major version of the service template that was used to create the service * pipeline.
*/ inline const Aws::String& GetTemplateMajorVersion() const{ return m_templateMajorVersion; } /** *The major version of the service template that was used to create the service * pipeline.
*/ inline bool TemplateMajorVersionHasBeenSet() const { return m_templateMajorVersionHasBeenSet; } /** *The major version of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateMajorVersion(const Aws::String& value) { m_templateMajorVersionHasBeenSet = true; m_templateMajorVersion = value; } /** *The major version of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateMajorVersion(Aws::String&& value) { m_templateMajorVersionHasBeenSet = true; m_templateMajorVersion = std::move(value); } /** *The major version of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateMajorVersion(const char* value) { m_templateMajorVersionHasBeenSet = true; m_templateMajorVersion.assign(value); } /** *The major version of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateMajorVersion(const Aws::String& value) { SetTemplateMajorVersion(value); return *this;} /** *The major version of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateMajorVersion(Aws::String&& value) { SetTemplateMajorVersion(std::move(value)); return *this;} /** *The major version of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateMajorVersion(const char* value) { SetTemplateMajorVersion(value); return *this;} /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline const Aws::String& GetTemplateMinorVersion() const{ return m_templateMinorVersion; } /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline bool TemplateMinorVersionHasBeenSet() const { return m_templateMinorVersionHasBeenSet; } /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateMinorVersion(const Aws::String& value) { m_templateMinorVersionHasBeenSet = true; m_templateMinorVersion = value; } /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateMinorVersion(Aws::String&& value) { m_templateMinorVersionHasBeenSet = true; m_templateMinorVersion = std::move(value); } /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateMinorVersion(const char* value) { m_templateMinorVersionHasBeenSet = true; m_templateMinorVersion.assign(value); } /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateMinorVersion(const Aws::String& value) { SetTemplateMinorVersion(value); return *this;} /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateMinorVersion(Aws::String&& value) { SetTemplateMinorVersion(std::move(value)); return *this;} /** *The minor version of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateMinorVersion(const char* value) { SetTemplateMinorVersion(value); return *this;} /** *The name of the service template that was used to create the service * pipeline.
*/ inline const Aws::String& GetTemplateName() const{ return m_templateName; } /** *The name of the service template that was used to create the service * pipeline.
*/ inline bool TemplateNameHasBeenSet() const { return m_templateNameHasBeenSet; } /** *The name of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateName(const Aws::String& value) { m_templateNameHasBeenSet = true; m_templateName = value; } /** *The name of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateName(Aws::String&& value) { m_templateNameHasBeenSet = true; m_templateName = std::move(value); } /** *The name of the service template that was used to create the service * pipeline.
*/ inline void SetTemplateName(const char* value) { m_templateNameHasBeenSet = true; m_templateName.assign(value); } /** *The name of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateName(const Aws::String& value) { SetTemplateName(value); return *this;} /** *The name of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateName(Aws::String&& value) { SetTemplateName(std::move(value)); return *this;} /** *The name of the service template that was used to create the service * pipeline.
*/ inline ServicePipelineState& WithTemplateName(const char* value) { SetTemplateName(value); return *this;} private: Aws::String m_spec; bool m_specHasBeenSet = false; Aws::String m_templateMajorVersion; bool m_templateMajorVersionHasBeenSet = false; Aws::String m_templateMinorVersion; bool m_templateMinorVersionHasBeenSet = false; Aws::String m_templateName; bool m_templateNameHasBeenSet = false; }; } // namespace Model } // namespace Proton } // namespace Aws