/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a GetPipelineExecution
* action.See Also:
AWS
* API Reference
The name of the pipeline about which you want to get execution details.
*/ inline const Aws::String& GetPipelineName() const{ return m_pipelineName; } /** *The name of the pipeline about which you want to get execution details.
*/ inline bool PipelineNameHasBeenSet() const { return m_pipelineNameHasBeenSet; } /** *The name of the pipeline about which you want to get execution details.
*/ inline void SetPipelineName(const Aws::String& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = value; } /** *The name of the pipeline about which you want to get execution details.
*/ inline void SetPipelineName(Aws::String&& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = std::move(value); } /** *The name of the pipeline about which you want to get execution details.
*/ inline void SetPipelineName(const char* value) { m_pipelineNameHasBeenSet = true; m_pipelineName.assign(value); } /** *The name of the pipeline about which you want to get execution details.
*/ inline GetPipelineExecutionRequest& WithPipelineName(const Aws::String& value) { SetPipelineName(value); return *this;} /** *The name of the pipeline about which you want to get execution details.
*/ inline GetPipelineExecutionRequest& WithPipelineName(Aws::String&& value) { SetPipelineName(std::move(value)); return *this;} /** *The name of the pipeline about which you want to get execution details.
*/ inline GetPipelineExecutionRequest& WithPipelineName(const char* value) { SetPipelineName(value); return *this;} /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline const Aws::String& GetPipelineExecutionId() const{ return m_pipelineExecutionId; } /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline bool PipelineExecutionIdHasBeenSet() const { return m_pipelineExecutionIdHasBeenSet; } /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline void SetPipelineExecutionId(const Aws::String& value) { m_pipelineExecutionIdHasBeenSet = true; m_pipelineExecutionId = value; } /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline void SetPipelineExecutionId(Aws::String&& value) { m_pipelineExecutionIdHasBeenSet = true; m_pipelineExecutionId = std::move(value); } /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline void SetPipelineExecutionId(const char* value) { m_pipelineExecutionIdHasBeenSet = true; m_pipelineExecutionId.assign(value); } /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline GetPipelineExecutionRequest& WithPipelineExecutionId(const Aws::String& value) { SetPipelineExecutionId(value); return *this;} /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline GetPipelineExecutionRequest& WithPipelineExecutionId(Aws::String&& value) { SetPipelineExecutionId(std::move(value)); return *this;} /** *The ID of the pipeline execution about which you want to get execution * details.
*/ inline GetPipelineExecutionRequest& WithPipelineExecutionId(const char* value) { SetPipelineExecutionId(value); return *this;} private: Aws::String m_pipelineName; bool m_pipelineNameHasBeenSet = false; Aws::String m_pipelineExecutionId; bool m_pipelineExecutionIdHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws