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

A list of function URL configurations.

*/ inline const Aws::Vector& GetFunctionUrlConfigs() const{ return m_functionUrlConfigs; } /** *

A list of function URL configurations.

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

A list of function URL configurations.

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

A list of function URL configurations.

*/ inline ListFunctionUrlConfigsResult& WithFunctionUrlConfigs(const Aws::Vector& value) { SetFunctionUrlConfigs(value); return *this;} /** *

A list of function URL configurations.

*/ inline ListFunctionUrlConfigsResult& WithFunctionUrlConfigs(Aws::Vector&& value) { SetFunctionUrlConfigs(std::move(value)); return *this;} /** *

A list of function URL configurations.

*/ inline ListFunctionUrlConfigsResult& AddFunctionUrlConfigs(const FunctionUrlConfig& value) { m_functionUrlConfigs.push_back(value); return *this; } /** *

A list of function URL configurations.

*/ inline ListFunctionUrlConfigsResult& AddFunctionUrlConfigs(FunctionUrlConfig&& value) { m_functionUrlConfigs.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 ListFunctionUrlConfigsResult& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *

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

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

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

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