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

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

*/ inline const VirtualServiceData& GetVirtualService() const{ return m_virtualService; } /** *

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

*/ inline void SetVirtualService(const VirtualServiceData& value) { m_virtualService = value; } /** *

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

*/ inline void SetVirtualService(VirtualServiceData&& value) { m_virtualService = std::move(value); } /** *

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

*/ inline CreateVirtualServiceResult& WithVirtualService(const VirtualServiceData& value) { SetVirtualService(value); return *this;} /** *

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

*/ inline CreateVirtualServiceResult& WithVirtualService(VirtualServiceData&& value) { SetVirtualService(std::move(value)); return *this;} private: VirtualServiceData m_virtualService; }; } // namespace Model } // namespace AppMesh } // namespace Aws