/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include An object that represents a virtual node service provider.See
* Also:
AWS
* API Reference
The name of the virtual router that is acting as a service provider.
*/ inline const Aws::String& GetVirtualRouterName() const{ return m_virtualRouterName; } /** *The name of the virtual router that is acting as a service provider.
*/ inline bool VirtualRouterNameHasBeenSet() const { return m_virtualRouterNameHasBeenSet; } /** *The name of the virtual router that is acting as a service provider.
*/ inline void SetVirtualRouterName(const Aws::String& value) { m_virtualRouterNameHasBeenSet = true; m_virtualRouterName = value; } /** *The name of the virtual router that is acting as a service provider.
*/ inline void SetVirtualRouterName(Aws::String&& value) { m_virtualRouterNameHasBeenSet = true; m_virtualRouterName = std::move(value); } /** *The name of the virtual router that is acting as a service provider.
*/ inline void SetVirtualRouterName(const char* value) { m_virtualRouterNameHasBeenSet = true; m_virtualRouterName.assign(value); } /** *The name of the virtual router that is acting as a service provider.
*/ inline VirtualRouterServiceProvider& WithVirtualRouterName(const Aws::String& value) { SetVirtualRouterName(value); return *this;} /** *The name of the virtual router that is acting as a service provider.
*/ inline VirtualRouterServiceProvider& WithVirtualRouterName(Aws::String&& value) { SetVirtualRouterName(std::move(value)); return *this;} /** *The name of the virtual router that is acting as a service provider.
*/ inline VirtualRouterServiceProvider& WithVirtualRouterName(const char* value) { SetVirtualRouterName(value); return *this;} private: Aws::String m_virtualRouterName; bool m_virtualRouterNameHasBeenSet = false; }; } // namespace Model } // namespace AppMesh } // namespace Aws