/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
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;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateVirtualRouterResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateVirtualRouterResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateVirtualRouterResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: VirtualRouterData m_virtualRouter; Aws::String m_requestId; }; } // namespace Model } // namespace AppMesh } // namespace Aws