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