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

A list of strings identifying available versions of the specified table.

*/ inline const Aws::Vector& GetTableVersions() const{ return m_tableVersions; } /** *

A list of strings identifying available versions of the specified table.

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

A list of strings identifying available versions of the specified table.

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

A list of strings identifying available versions of the specified table.

*/ inline GetTableVersionsResult& WithTableVersions(const Aws::Vector& value) { SetTableVersions(value); return *this;} /** *

A list of strings identifying available versions of the specified table.

*/ inline GetTableVersionsResult& WithTableVersions(Aws::Vector&& value) { SetTableVersions(std::move(value)); return *this;} /** *

A list of strings identifying available versions of the specified table.

*/ inline GetTableVersionsResult& AddTableVersions(const TableVersion& value) { m_tableVersions.push_back(value); return *this; } /** *

A list of strings identifying available versions of the specified table.

*/ inline GetTableVersionsResult& AddTableVersions(TableVersion&& value) { m_tableVersions.push_back(std::move(value)); return *this; } /** *

A continuation token, if the list of available versions does not include the * last one.

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

A continuation token, if the list of available versions does not include the * last one.

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

A continuation token, if the list of available versions does not include the * last one.

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

A continuation token, if the list of available versions does not include the * last one.

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

A continuation token, if the list of available versions does not include the * last one.

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

A continuation token, if the list of available versions does not include the * last one.

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

A continuation token, if the list of available versions does not include the * last one.

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