68 lines
1.8 KiB
C
68 lines
1.8 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/GatewayRouteData.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 UpdateGatewayRouteResult
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
UpdateGatewayRouteResult();
|
|||
|
|
UpdateGatewayRouteResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
UpdateGatewayRouteResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the gateway route that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline const GatewayRouteData& GetGatewayRoute() const{ return m_gatewayRoute; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the gateway route that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGatewayRoute(const GatewayRouteData& value) { m_gatewayRoute = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the gateway route that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetGatewayRoute(GatewayRouteData&& value) { m_gatewayRoute = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the gateway route that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayRouteResult& WithGatewayRoute(const GatewayRouteData& value) { SetGatewayRoute(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>A full description of the gateway route that was updated.</p>
|
|||
|
|
*/
|
|||
|
|
inline UpdateGatewayRouteResult& WithGatewayRoute(GatewayRouteData&& value) { SetGatewayRoute(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
GatewayRouteData m_gatewayRoute;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace AppMesh
|
|||
|
|
} // namespace Aws
|