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

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

*/ inline const VirtualGatewayData& GetVirtualGateway() const{ return m_virtualGateway; } /** *

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

*/ inline void SetVirtualGateway(const VirtualGatewayData& value) { m_virtualGateway = value; } /** *

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

*/ inline void SetVirtualGateway(VirtualGatewayData&& value) { m_virtualGateway = std::move(value); } /** *

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

*/ inline CreateVirtualGatewayResult& WithVirtualGateway(const VirtualGatewayData& value) { SetVirtualGateway(value); return *this;} /** *

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

*/ inline CreateVirtualGatewayResult& WithVirtualGateway(VirtualGatewayData&& value) { SetVirtualGateway(std::move(value)); return *this;} private: VirtualGatewayData m_virtualGateway; }; } // namespace Model } // namespace AppMesh } // namespace Aws