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

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

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

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

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

*/ inline ListCodeSigningConfigsResult& WithNextMarker(const char* value) { SetNextMarker(value); return *this;} /** *

The code signing configurations

*/ inline const Aws::Vector& GetCodeSigningConfigs() const{ return m_codeSigningConfigs; } /** *

The code signing configurations

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

The code signing configurations

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

The code signing configurations

*/ inline ListCodeSigningConfigsResult& WithCodeSigningConfigs(const Aws::Vector& value) { SetCodeSigningConfigs(value); return *this;} /** *

The code signing configurations

*/ inline ListCodeSigningConfigsResult& WithCodeSigningConfigs(Aws::Vector&& value) { SetCodeSigningConfigs(std::move(value)); return *this;} /** *

The code signing configurations

*/ inline ListCodeSigningConfigsResult& AddCodeSigningConfigs(const CodeSigningConfig& value) { m_codeSigningConfigs.push_back(value); return *this; } /** *

The code signing configurations

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