/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace DataPipeline { namespace Model { /** *

Contains the parameters for DescribePipelines.

See Also:

AWS * API Reference

*/ class DescribePipelinesRequest : public DataPipelineRequest { public: AWS_DATAPIPELINE_API 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_DATAPIPELINE_API Aws::String SerializePayload() const override; AWS_DATAPIPELINE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline const Aws::Vector& GetPipelineIds() const{ return m_pipelineIds; } /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline bool PipelineIdsHasBeenSet() const { return m_pipelineIdsHasBeenSet; } /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline void SetPipelineIds(const Aws::Vector& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds = value; } /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline void SetPipelineIds(Aws::Vector&& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds = std::move(value); } /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline DescribePipelinesRequest& WithPipelineIds(const Aws::Vector& value) { SetPipelineIds(value); return *this;} /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline DescribePipelinesRequest& WithPipelineIds(Aws::Vector&& value) { SetPipelineIds(std::move(value)); return *this;} /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline DescribePipelinesRequest& AddPipelineIds(const Aws::String& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds.push_back(value); return *this; } /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline DescribePipelinesRequest& AddPipelineIds(Aws::String&& value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds.push_back(std::move(value)); return *this; } /** *

The IDs of the pipelines to describe. You can pass as many as 25 identifiers * in a single call. To obtain pipeline IDs, call ListPipelines.

*/ inline DescribePipelinesRequest& AddPipelineIds(const char* value) { m_pipelineIdsHasBeenSet = true; m_pipelineIds.push_back(value); return *this; } private: Aws::Vector m_pipelineIds; bool m_pipelineIdsHasBeenSet = false; }; } // namespace Model } // namespace DataPipeline } // namespace Aws