/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a ListPipelines
action.See
* Also:
AWS
* API Reference
The list of pipelines.
*/ inline const Aws::VectorThe list of pipelines.
*/ inline void SetPipelines(const Aws::VectorThe list of pipelines.
*/ inline void SetPipelines(Aws::VectorThe list of pipelines.
*/ inline ListPipelinesResult& WithPipelines(const Aws::VectorThe list of pipelines.
*/ inline ListPipelinesResult& WithPipelines(Aws::VectorThe list of pipelines.
*/ inline ListPipelinesResult& AddPipelines(const PipelineSummary& value) { m_pipelines.push_back(value); return *this; } /** *The list of pipelines.
*/ inline ListPipelinesResult& AddPipelines(PipelineSummary&& value) { m_pipelines.push_back(std::move(value)); return *this; } /** *If the amount of returned information is significantly large, an identifier * is also returned. It can be used in a subsequent list pipelines call to return * the next set of pipelines in the list.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *If the amount of returned information is significantly large, an identifier * is also returned. It can be used in a subsequent list pipelines call to return * the next set of pipelines in the list.
*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *If the amount of returned information is significantly large, an identifier * is also returned. It can be used in a subsequent list pipelines call to return * the next set of pipelines in the list.
*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *If the amount of returned information is significantly large, an identifier * is also returned. It can be used in a subsequent list pipelines call to return * the next set of pipelines in the list.
*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *If the amount of returned information is significantly large, an identifier * is also returned. It can be used in a subsequent list pipelines call to return * the next set of pipelines in the list.
*/ inline ListPipelinesResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *If the amount of returned information is significantly large, an identifier * is also returned. It can be used in a subsequent list pipelines call to return * the next set of pipelines in the list.
*/ inline ListPipelinesResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *If the amount of returned information is significantly large, an identifier * is also returned. It can be used in a subsequent list pipelines call to return * the next set of pipelines in the list.
*/ inline ListPipelinesResult& WithNextToken(const char* value) { SetNextToken(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