This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-amplify/include/aws/amplify/model/GetAppResult.h

58 lines
1.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/amplify/Amplify_EXPORTS.h>
#include <aws/amplify/model/App.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace Amplify
{
namespace Model
{
class AWS_AMPLIFY_API GetAppResult
{
public:
GetAppResult();
GetAppResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
GetAppResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
inline const App& GetApp() const{ return m_app; }
inline void SetApp(const App& value) { m_app = value; }
inline void SetApp(App&& value) { m_app = std::move(value); }
inline GetAppResult& WithApp(const App& value) { SetApp(value); return *this;}
inline GetAppResult& WithApp(App&& value) { SetApp(std::move(value)); return *this;}
private:
App m_app;
};
} // namespace Model
} // namespace Amplify
} // namespace Aws