/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace AppMesh { namespace Model { class AWS_APPMESH_API CreateGatewayRouteResult { public: CreateGatewayRouteResult(); CreateGatewayRouteResult(const Aws::AmazonWebServiceResult& result); CreateGatewayRouteResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The full description of your gateway route following the create call.

*/ inline const GatewayRouteData& GetGatewayRoute() const{ return m_gatewayRoute; } /** *

The full description of your gateway route following the create call.

*/ inline void SetGatewayRoute(const GatewayRouteData& value) { m_gatewayRoute = value; } /** *

The full description of your gateway route following the create call.

*/ inline void SetGatewayRoute(GatewayRouteData&& value) { m_gatewayRoute = std::move(value); } /** *

The full description of your gateway route following the create call.

*/ inline CreateGatewayRouteResult& WithGatewayRoute(const GatewayRouteData& value) { SetGatewayRoute(value); return *this;} /** *

The full description of your gateway route following the create call.

*/ inline CreateGatewayRouteResult& WithGatewayRoute(GatewayRouteData&& value) { SetGatewayRoute(std::move(value)); return *this;} private: GatewayRouteData m_gatewayRoute; }; } // namespace Model } // namespace AppMesh } // namespace Aws