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

Contains the parameters for ListPipelines.

See Also:

AWS * API Reference

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

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

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

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

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

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

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

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

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

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

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

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

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

The starting point for the results to be returned. For the first call, this * value should be empty. As long as there are more results, continue to call * ListPipelines with the marker value from the previous call to * retrieve the next set of results.

*/ inline ListPipelinesRequest& WithMarker(const char* value) { SetMarker(value); return *this;} private: Aws::String m_marker; bool m_markerHasBeenSet = false; }; } // namespace Model } // namespace DataPipeline } // namespace Aws