/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of an UpdatePipeline
action.See
* Also:
AWS
* API Reference
The name of the pipeline to be updated.
*/ inline const PipelineDeclaration& GetPipeline() const{ return m_pipeline; } /** *The name of the pipeline to be updated.
*/ inline bool PipelineHasBeenSet() const { return m_pipelineHasBeenSet; } /** *The name of the pipeline to be updated.
*/ inline void SetPipeline(const PipelineDeclaration& value) { m_pipelineHasBeenSet = true; m_pipeline = value; } /** *The name of the pipeline to be updated.
*/ inline void SetPipeline(PipelineDeclaration&& value) { m_pipelineHasBeenSet = true; m_pipeline = std::move(value); } /** *The name of the pipeline to be updated.
*/ inline UpdatePipelineRequest& WithPipeline(const PipelineDeclaration& value) { SetPipeline(value); return *this;} /** *The name of the pipeline to be updated.
*/ inline UpdatePipelineRequest& WithPipeline(PipelineDeclaration&& value) { SetPipeline(std::move(value)); return *this;} private: PipelineDeclaration m_pipeline; bool m_pipelineHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws