/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Scheduler { namespace Model { /** *

The templated target type for the Amazon SageMaker * StartPipelineExecution API operation.

See Also:

* AWS * API Reference

*/ class SageMakerPipelineParameters { public: AWS_SCHEDULER_API SageMakerPipelineParameters(); AWS_SCHEDULER_API SageMakerPipelineParameters(Aws::Utils::Json::JsonView jsonValue); AWS_SCHEDULER_API SageMakerPipelineParameters& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SCHEDULER_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline const Aws::Vector& GetPipelineParameterList() const{ return m_pipelineParameterList; } /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline bool PipelineParameterListHasBeenSet() const { return m_pipelineParameterListHasBeenSet; } /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline void SetPipelineParameterList(const Aws::Vector& value) { m_pipelineParameterListHasBeenSet = true; m_pipelineParameterList = value; } /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline void SetPipelineParameterList(Aws::Vector&& value) { m_pipelineParameterListHasBeenSet = true; m_pipelineParameterList = std::move(value); } /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline SageMakerPipelineParameters& WithPipelineParameterList(const Aws::Vector& value) { SetPipelineParameterList(value); return *this;} /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline SageMakerPipelineParameters& WithPipelineParameterList(Aws::Vector&& value) { SetPipelineParameterList(std::move(value)); return *this;} /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline SageMakerPipelineParameters& AddPipelineParameterList(const SageMakerPipelineParameter& value) { m_pipelineParameterListHasBeenSet = true; m_pipelineParameterList.push_back(value); return *this; } /** *

List of parameter names and values to use when executing the SageMaker Model * Building Pipeline.

*/ inline SageMakerPipelineParameters& AddPipelineParameterList(SageMakerPipelineParameter&& value) { m_pipelineParameterListHasBeenSet = true; m_pipelineParameterList.push_back(std::move(value)); return *this; } private: Aws::Vector m_pipelineParameterList; bool m_pipelineParameterListHasBeenSet = false; }; } // namespace Model } // namespace Scheduler } // namespace Aws