This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-codepipeline/include/aws/codepipeline/model/GetPipelineExecutionRequest.h

142 lines
5.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codepipeline/CodePipeline_EXPORTS.h>
#include <aws/codepipeline/CodePipelineRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace CodePipeline
{
namespace Model
{
/**
* <p>Represents the input of a <code>GetPipelineExecution</code>
* action.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipelineExecutionInput">AWS
* API Reference</a></p>
*/
class AWS_CODEPIPELINE_API GetPipelineExecutionRequest : public CodePipelineRequest
{
public:
GetPipelineExecutionRequest();
// 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 "GetPipelineExecution"; }
Aws::String SerializePayload() const override;
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline const Aws::String& GetPipelineName() const{ return m_pipelineName; }
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline bool PipelineNameHasBeenSet() const { return m_pipelineNameHasBeenSet; }
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline void SetPipelineName(const Aws::String& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = value; }
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline void SetPipelineName(Aws::String&& value) { m_pipelineNameHasBeenSet = true; m_pipelineName = std::move(value); }
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline void SetPipelineName(const char* value) { m_pipelineNameHasBeenSet = true; m_pipelineName.assign(value); }
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline GetPipelineExecutionRequest& WithPipelineName(const Aws::String& value) { SetPipelineName(value); return *this;}
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline GetPipelineExecutionRequest& WithPipelineName(Aws::String&& value) { SetPipelineName(std::move(value)); return *this;}
/**
* <p>The name of the pipeline about which you want to get execution details.</p>
*/
inline GetPipelineExecutionRequest& WithPipelineName(const char* value) { SetPipelineName(value); return *this;}
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline const Aws::String& GetPipelineExecutionId() const{ return m_pipelineExecutionId; }
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline bool PipelineExecutionIdHasBeenSet() const { return m_pipelineExecutionIdHasBeenSet; }
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline void SetPipelineExecutionId(const Aws::String& value) { m_pipelineExecutionIdHasBeenSet = true; m_pipelineExecutionId = value; }
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline void SetPipelineExecutionId(Aws::String&& value) { m_pipelineExecutionIdHasBeenSet = true; m_pipelineExecutionId = std::move(value); }
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline void SetPipelineExecutionId(const char* value) { m_pipelineExecutionIdHasBeenSet = true; m_pipelineExecutionId.assign(value); }
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline GetPipelineExecutionRequest& WithPipelineExecutionId(const Aws::String& value) { SetPipelineExecutionId(value); return *this;}
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline GetPipelineExecutionRequest& WithPipelineExecutionId(Aws::String&& value) { SetPipelineExecutionId(std::move(value)); return *this;}
/**
* <p>The ID of the pipeline execution about which you want to get execution
* details.</p>
*/
inline GetPipelineExecutionRequest& WithPipelineExecutionId(const char* value) { SetPipelineExecutionId(value); return *this;}
private:
Aws::String m_pipelineName;
bool m_pipelineNameHasBeenSet;
Aws::String m_pipelineExecutionId;
bool m_pipelineExecutionIdHasBeenSet;
};
} // namespace Model
} // namespace CodePipeline
} // namespace Aws