/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the parameters for PutPipelineDefinition.See Also:
* AWS
* API Reference
The ID of the pipeline.
*/ inline const Aws::String& GetPipelineId() const{ return m_pipelineId; } /** *The ID of the pipeline.
*/ inline bool PipelineIdHasBeenSet() const { return m_pipelineIdHasBeenSet; } /** *The ID of the pipeline.
*/ inline void SetPipelineId(const Aws::String& value) { m_pipelineIdHasBeenSet = true; m_pipelineId = value; } /** *The ID of the pipeline.
*/ inline void SetPipelineId(Aws::String&& value) { m_pipelineIdHasBeenSet = true; m_pipelineId = std::move(value); } /** *The ID of the pipeline.
*/ inline void SetPipelineId(const char* value) { m_pipelineIdHasBeenSet = true; m_pipelineId.assign(value); } /** *The ID of the pipeline.
*/ inline PutPipelineDefinitionRequest& WithPipelineId(const Aws::String& value) { SetPipelineId(value); return *this;} /** *The ID of the pipeline.
*/ inline PutPipelineDefinitionRequest& WithPipelineId(Aws::String&& value) { SetPipelineId(std::move(value)); return *this;} /** *The ID of the pipeline.
*/ inline PutPipelineDefinitionRequest& WithPipelineId(const char* value) { SetPipelineId(value); return *this;} /** *The objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline const Aws::VectorThe objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline bool PipelineObjectsHasBeenSet() const { return m_pipelineObjectsHasBeenSet; } /** *The objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline void SetPipelineObjects(const Aws::VectorThe objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline void SetPipelineObjects(Aws::VectorThe objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline PutPipelineDefinitionRequest& WithPipelineObjects(const Aws::VectorThe objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline PutPipelineDefinitionRequest& WithPipelineObjects(Aws::VectorThe objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline PutPipelineDefinitionRequest& AddPipelineObjects(const PipelineObject& value) { m_pipelineObjectsHasBeenSet = true; m_pipelineObjects.push_back(value); return *this; } /** *The objects that define the pipeline. These objects overwrite the existing * pipeline definition.
*/ inline PutPipelineDefinitionRequest& AddPipelineObjects(PipelineObject&& value) { m_pipelineObjectsHasBeenSet = true; m_pipelineObjects.push_back(std::move(value)); return *this; } /** *The parameter objects used with the pipeline.
*/ inline const Aws::VectorThe parameter objects used with the pipeline.
*/ inline bool ParameterObjectsHasBeenSet() const { return m_parameterObjectsHasBeenSet; } /** *The parameter objects used with the pipeline.
*/ inline void SetParameterObjects(const Aws::VectorThe parameter objects used with the pipeline.
*/ inline void SetParameterObjects(Aws::VectorThe parameter objects used with the pipeline.
*/ inline PutPipelineDefinitionRequest& WithParameterObjects(const Aws::VectorThe parameter objects used with the pipeline.
*/ inline PutPipelineDefinitionRequest& WithParameterObjects(Aws::VectorThe parameter objects used with the pipeline.
*/ inline PutPipelineDefinitionRequest& AddParameterObjects(const ParameterObject& value) { m_parameterObjectsHasBeenSet = true; m_parameterObjects.push_back(value); return *this; } /** *The parameter objects used with the pipeline.
*/ inline PutPipelineDefinitionRequest& AddParameterObjects(ParameterObject&& value) { m_parameterObjectsHasBeenSet = true; m_parameterObjects.push_back(std::move(value)); return *this; } /** *The parameter values used with the pipeline.
*/ inline const Aws::VectorThe parameter values used with the pipeline.
*/ inline bool ParameterValuesHasBeenSet() const { return m_parameterValuesHasBeenSet; } /** *The parameter values used with the pipeline.
*/ inline void SetParameterValues(const Aws::VectorThe parameter values used with the pipeline.
*/ inline void SetParameterValues(Aws::VectorThe parameter values used with the pipeline.
*/ inline PutPipelineDefinitionRequest& WithParameterValues(const Aws::VectorThe parameter values used with the pipeline.
*/ inline PutPipelineDefinitionRequest& WithParameterValues(Aws::VectorThe parameter values used with the pipeline.
*/ inline PutPipelineDefinitionRequest& AddParameterValues(const ParameterValue& value) { m_parameterValuesHasBeenSet = true; m_parameterValues.push_back(value); return *this; } /** *The parameter values used with the pipeline.
*/ inline PutPipelineDefinitionRequest& AddParameterValues(ParameterValue&& value) { m_parameterValuesHasBeenSet = true; m_parameterValues.push_back(std::move(value)); return *this; } private: Aws::String m_pipelineId; bool m_pipelineIdHasBeenSet = false; Aws::Vector