150 lines
5.7 KiB
C++
150 lines
5.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/datapipeline/DataPipeline_EXPORTS.h>
|
|
#include <aws/datapipeline/DataPipelineRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace DataPipeline
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Contains the parameters for GetPipelineDefinition.</p><p><h3>See Also:</h3>
|
|
* <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/GetPipelineDefinitionInput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DATAPIPELINE_API GetPipelineDefinitionRequest : public DataPipelineRequest
|
|
{
|
|
public:
|
|
GetPipelineDefinitionRequest();
|
|
|
|
// 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 "GetPipelineDefinition"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline const Aws::String& GetPipelineId() const{ return m_pipelineId; }
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline bool PipelineIdHasBeenSet() const { return m_pipelineIdHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline void SetPipelineId(const Aws::String& value) { m_pipelineIdHasBeenSet = true; m_pipelineId = value; }
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline void SetPipelineId(Aws::String&& value) { m_pipelineIdHasBeenSet = true; m_pipelineId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline void SetPipelineId(const char* value) { m_pipelineIdHasBeenSet = true; m_pipelineId.assign(value); }
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline GetPipelineDefinitionRequest& WithPipelineId(const Aws::String& value) { SetPipelineId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline GetPipelineDefinitionRequest& WithPipelineId(Aws::String&& value) { SetPipelineId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The ID of the pipeline.</p>
|
|
*/
|
|
inline GetPipelineDefinitionRequest& WithPipelineId(const char* value) { SetPipelineId(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline const Aws::String& GetVersion() const{ return m_version; }
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline bool VersionHasBeenSet() const { return m_versionHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline void SetVersion(const Aws::String& value) { m_versionHasBeenSet = true; m_version = value; }
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline void SetVersion(Aws::String&& value) { m_versionHasBeenSet = true; m_version = std::move(value); }
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline void SetVersion(const char* value) { m_versionHasBeenSet = true; m_version.assign(value); }
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline GetPipelineDefinitionRequest& WithVersion(const Aws::String& value) { SetVersion(value); return *this;}
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline GetPipelineDefinitionRequest& WithVersion(Aws::String&& value) { SetVersion(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The version of the pipeline definition to retrieve. Set this parameter to
|
|
* <code>latest</code> (default) to use the last definition saved to the pipeline
|
|
* or <code>active</code> to use the last definition that was activated.</p>
|
|
*/
|
|
inline GetPipelineDefinitionRequest& WithVersion(const char* value) { SetVersion(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_pipelineId;
|
|
bool m_pipelineIdHasBeenSet;
|
|
|
|
Aws::String m_version;
|
|
bool m_versionHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DataPipeline
|
|
} // namespace Aws
|