/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A list of Lambda functions.See Also:
AWS
* API Reference
The pagination token that's included if more results are available.
*/ inline const Aws::String& GetNextMarker() const{ return m_nextMarker; } /** *The pagination token that's included if more results are available.
*/ inline void SetNextMarker(const Aws::String& value) { m_nextMarker = value; } /** *The pagination token that's included if more results are available.
*/ inline void SetNextMarker(Aws::String&& value) { m_nextMarker = std::move(value); } /** *The pagination token that's included if more results are available.
*/ inline void SetNextMarker(const char* value) { m_nextMarker.assign(value); } /** *The pagination token that's included if more results are available.
*/ inline ListFunctionsResult& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *The pagination token that's included if more results are available.
*/ inline ListFunctionsResult& WithNextMarker(Aws::String&& value) { SetNextMarker(std::move(value)); return *this;} /** *The pagination token that's included if more results are available.
*/ inline ListFunctionsResult& WithNextMarker(const char* value) { SetNextMarker(value); return *this;} /** *A list of Lambda functions.
*/ inline const Aws::VectorA list of Lambda functions.
*/ inline void SetFunctions(const Aws::VectorA list of Lambda functions.
*/ inline void SetFunctions(Aws::VectorA list of Lambda functions.
*/ inline ListFunctionsResult& WithFunctions(const Aws::VectorA list of Lambda functions.
*/ inline ListFunctionsResult& WithFunctions(Aws::VectorA list of Lambda functions.
*/ inline ListFunctionsResult& AddFunctions(const FunctionConfiguration& value) { m_functions.push_back(value); return *this; } /** *A list of Lambda functions.
*/ inline ListFunctionsResult& AddFunctions(FunctionConfiguration&& value) { m_functions.push_back(std::move(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 ListFunctionsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListFunctionsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListFunctionsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextMarker; Aws::Vector