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

Represents the input of an UpdatePipeline action.

See * Also:

AWS * API Reference

*/ class UpdatePipelineRequest : public CodePipelineRequest { public: AWS_CODEPIPELINE_API UpdatePipelineRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdatePipeline"; } AWS_CODEPIPELINE_API Aws::String SerializePayload() const override; AWS_CODEPIPELINE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

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