68 lines
1.9 KiB
C++
68 lines
1.9 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/appmesh/AppMesh_EXPORTS.h>
|
|
#include <aws/appmesh/model/VirtualGatewayData.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace AppMesh
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_APPMESH_API UpdateVirtualGatewayResult
|
|
{
|
|
public:
|
|
UpdateVirtualGatewayResult();
|
|
UpdateVirtualGatewayResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
UpdateVirtualGatewayResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>A full description of the virtual gateway that was updated.</p>
|
|
*/
|
|
inline const VirtualGatewayData& GetVirtualGateway() const{ return m_virtualGateway; }
|
|
|
|
/**
|
|
* <p>A full description of the virtual gateway that was updated.</p>
|
|
*/
|
|
inline void SetVirtualGateway(const VirtualGatewayData& value) { m_virtualGateway = value; }
|
|
|
|
/**
|
|
* <p>A full description of the virtual gateway that was updated.</p>
|
|
*/
|
|
inline void SetVirtualGateway(VirtualGatewayData&& value) { m_virtualGateway = std::move(value); }
|
|
|
|
/**
|
|
* <p>A full description of the virtual gateway that was updated.</p>
|
|
*/
|
|
inline UpdateVirtualGatewayResult& WithVirtualGateway(const VirtualGatewayData& value) { SetVirtualGateway(value); return *this;}
|
|
|
|
/**
|
|
* <p>A full description of the virtual gateway that was updated.</p>
|
|
*/
|
|
inline UpdateVirtualGatewayResult& WithVirtualGateway(VirtualGatewayData&& value) { SetVirtualGateway(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
VirtualGatewayData m_virtualGateway;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace AppMesh
|
|
} // namespace Aws
|