/** * 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 ResourceExplorer2 { namespace Model { class UpdateViewResult { public: AWS_RESOURCEEXPLORER2_API UpdateViewResult(); AWS_RESOURCEEXPLORER2_API UpdateViewResult(const Aws::AmazonWebServiceResult& result); AWS_RESOURCEEXPLORER2_API UpdateViewResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Details about the view that you changed with this operation.

*/ inline const View& GetView() const{ return m_view; } /** *

Details about the view that you changed with this operation.

*/ inline void SetView(const View& value) { m_view = value; } /** *

Details about the view that you changed with this operation.

*/ inline void SetView(View&& value) { m_view = std::move(value); } /** *

Details about the view that you changed with this operation.

*/ inline UpdateViewResult& WithView(const View& value) { SetView(value); return *this;} /** *

Details about the view that you changed with this operation.

*/ inline UpdateViewResult& WithView(View&& value) { SetView(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 UpdateViewResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateViewResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateViewResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: View m_view; Aws::String m_requestId; }; } // namespace Model } // namespace ResourceExplorer2 } // namespace Aws