/** * 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 Lambda { namespace Model { class ListFunctionEventInvokeConfigsResult { public: AWS_LAMBDA_API ListFunctionEventInvokeConfigsResult(); AWS_LAMBDA_API ListFunctionEventInvokeConfigsResult(const Aws::AmazonWebServiceResult& result); AWS_LAMBDA_API ListFunctionEventInvokeConfigsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A list of configurations.

*/ inline const Aws::Vector& GetFunctionEventInvokeConfigs() const{ return m_functionEventInvokeConfigs; } /** *

A list of configurations.

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

A list of configurations.

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

A list of configurations.

*/ inline ListFunctionEventInvokeConfigsResult& WithFunctionEventInvokeConfigs(const Aws::Vector& value) { SetFunctionEventInvokeConfigs(value); return *this;} /** *

A list of configurations.

*/ inline ListFunctionEventInvokeConfigsResult& WithFunctionEventInvokeConfigs(Aws::Vector&& value) { SetFunctionEventInvokeConfigs(std::move(value)); return *this;} /** *

A list of configurations.

*/ inline ListFunctionEventInvokeConfigsResult& AddFunctionEventInvokeConfigs(const FunctionEventInvokeConfig& value) { m_functionEventInvokeConfigs.push_back(value); return *this; } /** *

A list of configurations.

*/ inline ListFunctionEventInvokeConfigsResult& AddFunctionEventInvokeConfigs(FunctionEventInvokeConfig&& value) { m_functionEventInvokeConfigs.push_back(std::move(value)); return *this; } /** *

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 ListFunctionEventInvokeConfigsResult& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *

The pagination token that's included if more results are available.

*/ inline ListFunctionEventInvokeConfigsResult& WithNextMarker(Aws::String&& value) { SetNextMarker(std::move(value)); return *this;} /** *

The pagination token that's included if more results are available.

*/ inline ListFunctionEventInvokeConfigsResult& WithNextMarker(const char* value) { SetNextMarker(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 ListFunctionEventInvokeConfigsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListFunctionEventInvokeConfigsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListFunctionEventInvokeConfigsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_functionEventInvokeConfigs; Aws::String m_nextMarker; Aws::String m_requestId; }; } // namespace Model } // namespace Lambda } // namespace Aws