/** * 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 { /** *

See Also:

AWS * API Reference

*/ class AWS_APPMESH_API UpdateRouteResult { public: UpdateRouteResult(); UpdateRouteResult(const Aws::AmazonWebServiceResult& result); UpdateRouteResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A full description of the route that was updated.

*/ inline const RouteData& GetRoute() const{ return m_route; } /** *

A full description of the route that was updated.

*/ inline void SetRoute(const RouteData& value) { m_route = value; } /** *

A full description of the route that was updated.

*/ inline void SetRoute(RouteData&& value) { m_route = std::move(value); } /** *

A full description of the route that was updated.

*/ inline UpdateRouteResult& WithRoute(const RouteData& value) { SetRoute(value); return *this;} /** *

A full description of the route that was updated.

*/ inline UpdateRouteResult& WithRoute(RouteData&& value) { SetRoute(std::move(value)); return *this;} private: RouteData m_route; }; } // namespace Model } // namespace AppMesh } // namespace Aws