104 lines
4.3 KiB
C++
104 lines
4.3 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/AWSVector.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace DataPipeline
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p>Contains the parameters for DescribePipelines.</p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/datapipeline-2012-10-29/DescribePipelinesInput">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DATAPIPELINE_API DescribePipelinesRequest : public DataPipelineRequest
|
|
{
|
|
public:
|
|
DescribePipelinesRequest();
|
|
|
|
// 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 "DescribePipelines"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline const Aws::Vector<Aws::String>& GetPipelineIds() const{ return m_pipelineIds; }
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline bool PipelineIdsHasBeenSet() const { return m_pipelineIdsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline void SetPipelineIds(const Aws::Vector<Aws::String>& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds = value; }
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline void SetPipelineIds(Aws::Vector<Aws::String>&& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds = std::move(value); }
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline DescribePipelinesRequest& WithPipelineIds(const Aws::Vector<Aws::String>& value) { SetPipelineIds(value); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline DescribePipelinesRequest& WithPipelineIds(Aws::Vector<Aws::String>&& value) { SetPipelineIds(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline DescribePipelinesRequest& AddPipelineIds(const Aws::String& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline DescribePipelinesRequest& AddPipelineIds(Aws::String&& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds.push_back(std::move(value)); return *this; }
|
|
|
|
/**
|
|
* <p>The IDs of the pipelines to describe. You can pass as many as 25 identifiers
|
|
* in a single call. To obtain pipeline IDs, call <a>ListPipelines</a>.</p>
|
|
*/
|
|
inline DescribePipelinesRequest& AddPipelineIds(const char* value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds.push_back(value); return *this; }
|
|
|
|
private:
|
|
|
|
Aws::Vector<Aws::String> m_pipelineIds;
|
|
bool m_pipelineIdsHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DataPipeline
|
|
} // namespace Aws
|