/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input of a ListPipelines
action.See
* Also:
AWS
* API Reference
An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline ListPipelinesRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline ListPipelinesRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *An identifier that was returned from the previous list pipelines call. It can * be used to return the next set of pipelines in the list.
*/ inline ListPipelinesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *The maximum number of pipelines to return in a single call. To retrieve the * remaining pipelines, make another call with the returned nextToken value. The * minimum value you can specify is 1. The maximum accepted value is 1000.
*/ inline int GetMaxResults() const{ return m_maxResults; } /** *The maximum number of pipelines to return in a single call. To retrieve the * remaining pipelines, make another call with the returned nextToken value. The * minimum value you can specify is 1. The maximum accepted value is 1000.
*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *The maximum number of pipelines to return in a single call. To retrieve the * remaining pipelines, make another call with the returned nextToken value. The * minimum value you can specify is 1. The maximum accepted value is 1000.
*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *The maximum number of pipelines to return in a single call. To retrieve the * remaining pipelines, make another call with the returned nextToken value. The * minimum value you can specify is 1. The maximum accepted value is 1000.
*/ inline ListPipelinesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace CodePipeline } // namespace Aws