/** * 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 CloudWatchEvents { namespace Model { /** *

These are custom parameters to use when the target is a SageMaker Model * Building Pipeline that starts based on EventBridge events.

See * Also:

AWS * API Reference

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

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

List of Parameter names and values for SageMaker Model Building Pipeline * execution.

*/ 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 CloudWatchEvents } // namespace Aws