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

A list of provisioned concurrency configurations.

*/ inline const Aws::Vector& GetProvisionedConcurrencyConfigs() const{ return m_provisionedConcurrencyConfigs; } /** *

A list of provisioned concurrency configurations.

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

A list of provisioned concurrency configurations.

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

A list of provisioned concurrency configurations.

*/ inline ListProvisionedConcurrencyConfigsResult& WithProvisionedConcurrencyConfigs(const Aws::Vector& value) { SetProvisionedConcurrencyConfigs(value); return *this;} /** *

A list of provisioned concurrency configurations.

*/ inline ListProvisionedConcurrencyConfigsResult& WithProvisionedConcurrencyConfigs(Aws::Vector&& value) { SetProvisionedConcurrencyConfigs(std::move(value)); return *this;} /** *

A list of provisioned concurrency configurations.

*/ inline ListProvisionedConcurrencyConfigsResult& AddProvisionedConcurrencyConfigs(const ProvisionedConcurrencyConfigListItem& value) { m_provisionedConcurrencyConfigs.push_back(value); return *this; } /** *

A list of provisioned concurrency configurations.

*/ inline ListProvisionedConcurrencyConfigsResult& AddProvisionedConcurrencyConfigs(ProvisionedConcurrencyConfigListItem&& value) { m_provisionedConcurrencyConfigs.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 ListProvisionedConcurrencyConfigsResult& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *

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

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

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

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