/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace AppMesh { namespace Model { class DescribeVirtualGatewayResult { public: AWS_APPMESH_API DescribeVirtualGatewayResult(); AWS_APPMESH_API DescribeVirtualGatewayResult(const Aws::AmazonWebServiceResult& result); AWS_APPMESH_API DescribeVirtualGatewayResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The full description of your virtual gateway.

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

The full description of your virtual gateway.

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

The full description of your virtual gateway.

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

The full description of your virtual gateway.

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

The full description of your virtual gateway.

*/ inline DescribeVirtualGatewayResult& WithVirtualGateway(VirtualGatewayData&& value) { SetVirtualGateway(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 DescribeVirtualGatewayResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeVirtualGatewayResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeVirtualGatewayResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: VirtualGatewayData m_virtualGateway; Aws::String m_requestId; }; } // namespace Model } // namespace AppMesh } // namespace Aws