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

The ARN for the lens that was created or updated.

*/ inline const Aws::String& GetLensArn() const{ return m_lensArn; } /** *

The ARN for the lens that was created or updated.

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

The ARN for the lens that was created or updated.

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

The ARN for the lens that was created or updated.

*/ inline void SetLensArn(const char* value) { m_lensArn.assign(value); } /** *

The ARN for the lens that was created or updated.

*/ inline ImportLensResult& WithLensArn(const Aws::String& value) { SetLensArn(value); return *this;} /** *

The ARN for the lens that was created or updated.

*/ inline ImportLensResult& WithLensArn(Aws::String&& value) { SetLensArn(std::move(value)); return *this;} /** *

The ARN for the lens that was created or updated.

*/ inline ImportLensResult& WithLensArn(const char* value) { SetLensArn(value); return *this;} /** *

The status of the imported lens.

*/ inline const ImportLensStatus& GetStatus() const{ return m_status; } /** *

The status of the imported lens.

*/ inline void SetStatus(const ImportLensStatus& value) { m_status = value; } /** *

The status of the imported lens.

*/ inline void SetStatus(ImportLensStatus&& value) { m_status = std::move(value); } /** *

The status of the imported lens.

*/ inline ImportLensResult& WithStatus(const ImportLensStatus& value) { SetStatus(value); return *this;} /** *

The status of the imported lens.

*/ inline ImportLensResult& WithStatus(ImportLensStatus&& value) { SetStatus(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 ImportLensResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ImportLensResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ImportLensResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_lensArn; ImportLensStatus m_status; Aws::String m_requestId; }; } // namespace Model } // namespace WellArchitected } // namespace Aws