74 lines
2.2 KiB
C++
74 lines
2.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/BackendEnvironment.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
|
|
{
|
|
/**
|
|
* <p> The result structure of the delete backend environment result.
|
|
* </p><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/amplify-2017-07-25/DeleteBackendEnvironmentResult">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_AMPLIFY_API DeleteBackendEnvironmentResult
|
|
{
|
|
public:
|
|
DeleteBackendEnvironmentResult();
|
|
DeleteBackendEnvironmentResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
DeleteBackendEnvironmentResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p> Describes the backend environment for an Amplify app. </p>
|
|
*/
|
|
inline const BackendEnvironment& GetBackendEnvironment() const{ return m_backendEnvironment; }
|
|
|
|
/**
|
|
* <p> Describes the backend environment for an Amplify app. </p>
|
|
*/
|
|
inline void SetBackendEnvironment(const BackendEnvironment& value) { m_backendEnvironment = value; }
|
|
|
|
/**
|
|
* <p> Describes the backend environment for an Amplify app. </p>
|
|
*/
|
|
inline void SetBackendEnvironment(BackendEnvironment&& value) { m_backendEnvironment = std::move(value); }
|
|
|
|
/**
|
|
* <p> Describes the backend environment for an Amplify app. </p>
|
|
*/
|
|
inline DeleteBackendEnvironmentResult& WithBackendEnvironment(const BackendEnvironment& value) { SetBackendEnvironment(value); return *this;}
|
|
|
|
/**
|
|
* <p> Describes the backend environment for an Amplify app. </p>
|
|
*/
|
|
inline DeleteBackendEnvironmentResult& WithBackendEnvironment(BackendEnvironment&& value) { SetBackendEnvironment(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
BackendEnvironment m_backendEnvironment;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Amplify
|
|
} // namespace Aws
|