/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result structure for an Amplify app update request. See
* Also:
AWS
* API Reference
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