/** * 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 CreateVirtualRouterResult { public: CreateVirtualRouterResult(); CreateVirtualRouterResult(const Aws::AmazonWebServiceResult& result); CreateVirtualRouterResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The full description of your virtual router following the create call.

*/ inline const VirtualRouterData& GetVirtualRouter() const{ return m_virtualRouter; } /** *

The full description of your virtual router following the create call.

*/ inline void SetVirtualRouter(const VirtualRouterData& value) { m_virtualRouter = value; } /** *

The full description of your virtual router following the create call.

*/ inline void SetVirtualRouter(VirtualRouterData&& value) { m_virtualRouter = std::move(value); } /** *

The full description of your virtual router following the create call.

*/ inline CreateVirtualRouterResult& WithVirtualRouter(const VirtualRouterData& value) { SetVirtualRouter(value); return *this;} /** *

The full description of your virtual router following the create call.

*/ inline CreateVirtualRouterResult& WithVirtualRouter(VirtualRouterData&& value) { SetVirtualRouter(std::move(value)); return *this;} private: VirtualRouterData m_virtualRouter; }; } // namespace Model } // namespace AppMesh } // namespace Aws