/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace WellArchitected { namespace Model { class ExportLensResult { public: AWS_WELLARCHITECTED_API ExportLensResult(); AWS_WELLARCHITECTED_API ExportLensResult(const Aws::AmazonWebServiceResult& result); AWS_WELLARCHITECTED_API ExportLensResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The JSON representation of a lens.

*/ inline const Aws::String& GetLensJSON() const{ return m_lensJSON; } /** *

The JSON representation of a lens.

*/ inline void SetLensJSON(const Aws::String& value) { m_lensJSON = value; } /** *

The JSON representation of a lens.

*/ inline void SetLensJSON(Aws::String&& value) { m_lensJSON = std::move(value); } /** *

The JSON representation of a lens.

*/ inline void SetLensJSON(const char* value) { m_lensJSON.assign(value); } /** *

The JSON representation of a lens.

*/ inline ExportLensResult& WithLensJSON(const Aws::String& value) { SetLensJSON(value); return *this;} /** *

The JSON representation of a lens.

*/ inline ExportLensResult& WithLensJSON(Aws::String&& value) { SetLensJSON(std::move(value)); return *this;} /** *

The JSON representation of a lens.

*/ inline ExportLensResult& WithLensJSON(const char* value) { SetLensJSON(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 ExportLensResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ExportLensResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ExportLensResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_lensJSON; Aws::String m_requestId; }; } // namespace Model } // namespace WellArchitected } // namespace Aws