/** * 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 { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DataPipeline { namespace Model { /** *

Contains the output of ListPipelines.

See Also:

AWS * API Reference

*/ class ListPipelinesResult { public: AWS_DATAPIPELINE_API ListPipelinesResult(); AWS_DATAPIPELINE_API ListPipelinesResult(const Aws::AmazonWebServiceResult& result); AWS_DATAPIPELINE_API ListPipelinesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The pipeline identifiers. If you require additional information about the * pipelines, you can use these identifiers to call DescribePipelines and * GetPipelineDefinition.

*/ inline const Aws::Vector& GetPipelineIdList() const{ return m_pipelineIdList; } /** *

The pipeline identifiers. If you require additional information about the * pipelines, you can use these identifiers to call DescribePipelines and * GetPipelineDefinition.

*/ inline void SetPipelineIdList(const Aws::Vector& value) { m_pipelineIdList = value; } /** *

The pipeline identifiers. If you require additional information about the * pipelines, you can use these identifiers to call DescribePipelines and * GetPipelineDefinition.

*/ inline void SetPipelineIdList(Aws::Vector&& value) { m_pipelineIdList = std::move(value); } /** *

The pipeline identifiers. If you require additional information about the * pipelines, you can use these identifiers to call DescribePipelines and * GetPipelineDefinition.

*/ inline ListPipelinesResult& WithPipelineIdList(const Aws::Vector& value) { SetPipelineIdList(value); return *this;} /** *

The pipeline identifiers. If you require additional information about the * pipelines, you can use these identifiers to call DescribePipelines and * GetPipelineDefinition.

*/ inline ListPipelinesResult& WithPipelineIdList(Aws::Vector&& value) { SetPipelineIdList(std::move(value)); return *this;} /** *

The pipeline identifiers. If you require additional information about the * pipelines, you can use these identifiers to call DescribePipelines and * GetPipelineDefinition.

*/ inline ListPipelinesResult& AddPipelineIdList(const PipelineIdName& value) { m_pipelineIdList.push_back(value); return *this; } /** *

The pipeline identifiers. If you require additional information about the * pipelines, you can use these identifiers to call DescribePipelines and * GetPipelineDefinition.

*/ inline ListPipelinesResult& AddPipelineIdList(PipelineIdName&& value) { m_pipelineIdList.push_back(std::move(value)); return *this; } /** *

The starting point for the next page of results. To view the next page of * results, call ListPipelinesOutput again with this marker value. If * the value is null, there are no more results.

*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *

The starting point for the next page of results. To view the next page of * results, call ListPipelinesOutput again with this marker value. If * the value is null, there are no more results.

*/ inline void SetMarker(const Aws::String& value) { m_marker = value; } /** *

The starting point for the next page of results. To view the next page of * results, call ListPipelinesOutput again with this marker value. If * the value is null, there are no more results.

*/ inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); } /** *

The starting point for the next page of results. To view the next page of * results, call ListPipelinesOutput again with this marker value. If * the value is null, there are no more results.

*/ inline void SetMarker(const char* value) { m_marker.assign(value); } /** *

The starting point for the next page of results. To view the next page of * results, call ListPipelinesOutput again with this marker value. If * the value is null, there are no more results.

*/ inline ListPipelinesResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *

The starting point for the next page of results. To view the next page of * results, call ListPipelinesOutput again with this marker value. If * the value is null, there are no more results.

*/ inline ListPipelinesResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *

The starting point for the next page of results. To view the next page of * results, call ListPipelinesOutput again with this marker value. If * the value is null, there are no more results.

*/ inline ListPipelinesResult& WithMarker(const char* value) { SetMarker(value); return *this;} /** *

Indicates whether there are more results that can be obtained by a subsequent * call.

*/ inline bool GetHasMoreResults() const{ return m_hasMoreResults; } /** *

Indicates whether there are more results that can be obtained by a subsequent * call.

*/ inline void SetHasMoreResults(bool value) { m_hasMoreResults = value; } /** *

Indicates whether there are more results that can be obtained by a subsequent * call.

*/ inline ListPipelinesResult& WithHasMoreResults(bool value) { SetHasMoreResults(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline ListPipelinesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListPipelinesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListPipelinesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_pipelineIdList; Aws::String m_marker; bool m_hasMoreResults; Aws::String m_requestId; }; } // namespace Model } // namespace DataPipeline } // namespace Aws