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

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

*/ inline const Aws::Vector& GetDevEndpointNames() const{ return m_devEndpointNames; } /** *

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

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

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

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

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

*/ inline ListDevEndpointsResult& WithDevEndpointNames(const Aws::Vector& value) { SetDevEndpointNames(value); return *this;} /** *

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

*/ inline ListDevEndpointsResult& WithDevEndpointNames(Aws::Vector&& value) { SetDevEndpointNames(std::move(value)); return *this;} /** *

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

*/ inline ListDevEndpointsResult& AddDevEndpointNames(const Aws::String& value) { m_devEndpointNames.push_back(value); return *this; } /** *

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

*/ inline ListDevEndpointsResult& AddDevEndpointNames(Aws::String&& value) { m_devEndpointNames.push_back(std::move(value)); return *this; } /** *

The names of all the DevEndpoints in the account, or the * DevEndpoints with the specified tags.

*/ inline ListDevEndpointsResult& AddDevEndpointNames(const char* value) { m_devEndpointNames.push_back(value); return *this; } /** *

A continuation token, if the returned list does not contain the last metric * available.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

A continuation token, if the returned list does not contain the last metric * available.

*/ inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } /** *

A continuation token, if the returned list does not contain the last metric * available.

*/ inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } /** *

A continuation token, if the returned list does not contain the last metric * available.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

A continuation token, if the returned list does not contain the last metric * available.

*/ inline ListDevEndpointsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

A continuation token, if the returned list does not contain the last metric * available.

*/ inline ListDevEndpointsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

A continuation token, if the returned list does not contain the last metric * available.

*/ inline ListDevEndpointsResult& WithNextToken(const char* value) { SetNextToken(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 ListDevEndpointsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ListDevEndpointsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ListDevEndpointsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_devEndpointNames; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws