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

A list of DevEndpoint definitions.

*/ inline const Aws::Vector& GetDevEndpoints() const{ return m_devEndpoints; } /** *

A list of DevEndpoint definitions.

*/ inline void SetDevEndpoints(const Aws::Vector& value) { m_devEndpoints = value; } /** *

A list of DevEndpoint definitions.

*/ inline void SetDevEndpoints(Aws::Vector&& value) { m_devEndpoints = std::move(value); } /** *

A list of DevEndpoint definitions.

*/ inline BatchGetDevEndpointsResult& WithDevEndpoints(const Aws::Vector& value) { SetDevEndpoints(value); return *this;} /** *

A list of DevEndpoint definitions.

*/ inline BatchGetDevEndpointsResult& WithDevEndpoints(Aws::Vector&& value) { SetDevEndpoints(std::move(value)); return *this;} /** *

A list of DevEndpoint definitions.

*/ inline BatchGetDevEndpointsResult& AddDevEndpoints(const DevEndpoint& value) { m_devEndpoints.push_back(value); return *this; } /** *

A list of DevEndpoint definitions.

*/ inline BatchGetDevEndpointsResult& AddDevEndpoints(DevEndpoint&& value) { m_devEndpoints.push_back(std::move(value)); return *this; } /** *

A list of DevEndpoints not found.

*/ inline const Aws::Vector& GetDevEndpointsNotFound() const{ return m_devEndpointsNotFound; } /** *

A list of DevEndpoints not found.

*/ inline void SetDevEndpointsNotFound(const Aws::Vector& value) { m_devEndpointsNotFound = value; } /** *

A list of DevEndpoints not found.

*/ inline void SetDevEndpointsNotFound(Aws::Vector&& value) { m_devEndpointsNotFound = std::move(value); } /** *

A list of DevEndpoints not found.

*/ inline BatchGetDevEndpointsResult& WithDevEndpointsNotFound(const Aws::Vector& value) { SetDevEndpointsNotFound(value); return *this;} /** *

A list of DevEndpoints not found.

*/ inline BatchGetDevEndpointsResult& WithDevEndpointsNotFound(Aws::Vector&& value) { SetDevEndpointsNotFound(std::move(value)); return *this;} /** *

A list of DevEndpoints not found.

*/ inline BatchGetDevEndpointsResult& AddDevEndpointsNotFound(const Aws::String& value) { m_devEndpointsNotFound.push_back(value); return *this; } /** *

A list of DevEndpoints not found.

*/ inline BatchGetDevEndpointsResult& AddDevEndpointsNotFound(Aws::String&& value) { m_devEndpointsNotFound.push_back(std::move(value)); return *this; } /** *

A list of DevEndpoints not found.

*/ inline BatchGetDevEndpointsResult& AddDevEndpointsNotFound(const char* value) { m_devEndpointsNotFound.push_back(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 BatchGetDevEndpointsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline BatchGetDevEndpointsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline BatchGetDevEndpointsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_devEndpoints; Aws::Vector m_devEndpointsNotFound; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws