/** * 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 Glue { namespace Model { class GetDevEndpointResult { public: AWS_GLUE_API GetDevEndpointResult(); AWS_GLUE_API GetDevEndpointResult(const Aws::AmazonWebServiceResult& result); AWS_GLUE_API 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;} 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 GetDevEndpointResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetDevEndpointResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetDevEndpointResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: DevEndpoint m_devEndpoint; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws