/** * 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 Glue { namespace Model { class AWS_GLUE_API GetDevEndpointResult { public: GetDevEndpointResult(); GetDevEndpointResult(const Aws::AmazonWebServiceResult& result); GetDevEndpointResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A DevEndpoint definition.

*/ inline const DevEndpoint& GetDevEndpoint() const{ return m_devEndpoint; } /** *

A DevEndpoint definition.

*/ inline void SetDevEndpoint(const DevEndpoint& value) { m_devEndpoint = value; } /** *

A DevEndpoint definition.

*/ inline void SetDevEndpoint(DevEndpoint&& value) { m_devEndpoint = std::move(value); } /** *

A DevEndpoint definition.

*/ inline GetDevEndpointResult& WithDevEndpoint(const DevEndpoint& value) { SetDevEndpoint(value); return *this;} /** *

A DevEndpoint definition.

*/ inline GetDevEndpointResult& WithDevEndpoint(DevEndpoint&& value) { SetDevEndpoint(std::move(value)); return *this;} private: DevEndpoint m_devEndpoint; }; } // namespace Model } // namespace Glue } // namespace Aws