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-appmesh/include/aws/appmesh/model/UpdateVirtualRouterResult.h

73 lines
2.0 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/VirtualRouterData.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
{
/**
* <p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateVirtualRouterOutput">AWS
* API Reference</a></p>
*/
class AWS_APPMESH_API UpdateVirtualRouterResult
{
public:
UpdateVirtualRouterResult();
UpdateVirtualRouterResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
UpdateVirtualRouterResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A full description of the virtual router that was updated.</p>
*/
inline const VirtualRouterData& GetVirtualRouter() const{ return m_virtualRouter; }
/**
* <p>A full description of the virtual router that was updated.</p>
*/
inline void SetVirtualRouter(const VirtualRouterData& value) { m_virtualRouter = value; }
/**
* <p>A full description of the virtual router that was updated.</p>
*/
inline void SetVirtualRouter(VirtualRouterData&& value) { m_virtualRouter = std::move(value); }
/**
* <p>A full description of the virtual router that was updated.</p>
*/
inline UpdateVirtualRouterResult& WithVirtualRouter(const VirtualRouterData& value) { SetVirtualRouter(value); return *this;}
/**
* <p>A full description of the virtual router that was updated.</p>
*/
inline UpdateVirtualRouterResult& WithVirtualRouter(VirtualRouterData&& value) { SetVirtualRouter(std::move(value)); return *this;}
private:
VirtualRouterData m_virtualRouter;
};
} // namespace Model
} // namespace AppMesh
} // namespace Aws