/** * 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 Amplify { namespace Model { /** *

The result structure for an Amplify app update request.

See * Also:

AWS * API Reference

*/ class AWS_AMPLIFY_API UpdateAppResult { public: UpdateAppResult(); UpdateAppResult(const Aws::AmazonWebServiceResult& result); UpdateAppResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Represents the updated Amplify app.

*/ inline const App& GetApp() const{ return m_app; } /** *

Represents the updated Amplify app.

*/ inline void SetApp(const App& value) { m_app = value; } /** *

Represents the updated Amplify app.

*/ inline void SetApp(App&& value) { m_app = std::move(value); } /** *

Represents the updated Amplify app.

*/ inline UpdateAppResult& WithApp(const App& value) { SetApp(value); return *this;} /** *

Represents the updated Amplify app.

*/ inline UpdateAppResult& WithApp(App&& value) { SetApp(std::move(value)); return *this;} private: App m_app; }; } // namespace Model } // namespace Amplify } // namespace Aws