1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #pragma once 7 #include <aws/glue/Glue_EXPORTS.h> 8 #include <aws/core/utils/memory/stl/AWSVector.h> 9 #include <aws/core/utils/memory/stl/AWSString.h> 10 #include <aws/glue/model/Connection.h> 11 #include <utility> 12 13 namespace Aws 14 { 15 template<typename RESULT_TYPE> 16 class AmazonWebServiceResult; 17 18 namespace Utils 19 { 20 namespace Json 21 { 22 class JsonValue; 23 } // namespace Json 24 } // namespace Utils 25 namespace Glue 26 { 27 namespace Model 28 { 29 class AWS_GLUE_API GetConnectionsResult 30 { 31 public: 32 GetConnectionsResult(); 33 GetConnectionsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 34 GetConnectionsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); 35 36 37 /** 38 * <p>A list of requested connection definitions.</p> 39 */ GetConnectionList()40 inline const Aws::Vector<Connection>& GetConnectionList() const{ return m_connectionList; } 41 42 /** 43 * <p>A list of requested connection definitions.</p> 44 */ SetConnectionList(const Aws::Vector<Connection> & value)45 inline void SetConnectionList(const Aws::Vector<Connection>& value) { m_connectionList = value; } 46 47 /** 48 * <p>A list of requested connection definitions.</p> 49 */ SetConnectionList(Aws::Vector<Connection> && value)50 inline void SetConnectionList(Aws::Vector<Connection>&& value) { m_connectionList = std::move(value); } 51 52 /** 53 * <p>A list of requested connection definitions.</p> 54 */ WithConnectionList(const Aws::Vector<Connection> & value)55 inline GetConnectionsResult& WithConnectionList(const Aws::Vector<Connection>& value) { SetConnectionList(value); return *this;} 56 57 /** 58 * <p>A list of requested connection definitions.</p> 59 */ WithConnectionList(Aws::Vector<Connection> && value)60 inline GetConnectionsResult& WithConnectionList(Aws::Vector<Connection>&& value) { SetConnectionList(std::move(value)); return *this;} 61 62 /** 63 * <p>A list of requested connection definitions.</p> 64 */ AddConnectionList(const Connection & value)65 inline GetConnectionsResult& AddConnectionList(const Connection& value) { m_connectionList.push_back(value); return *this; } 66 67 /** 68 * <p>A list of requested connection definitions.</p> 69 */ AddConnectionList(Connection && value)70 inline GetConnectionsResult& AddConnectionList(Connection&& value) { m_connectionList.push_back(std::move(value)); return *this; } 71 72 73 /** 74 * <p>A continuation token, if the list of connections returned does not include 75 * the last of the filtered connections.</p> 76 */ GetNextToken()77 inline const Aws::String& GetNextToken() const{ return m_nextToken; } 78 79 /** 80 * <p>A continuation token, if the list of connections returned does not include 81 * the last of the filtered connections.</p> 82 */ SetNextToken(const Aws::String & value)83 inline void SetNextToken(const Aws::String& value) { m_nextToken = value; } 84 85 /** 86 * <p>A continuation token, if the list of connections returned does not include 87 * the last of the filtered connections.</p> 88 */ SetNextToken(Aws::String && value)89 inline void SetNextToken(Aws::String&& value) { m_nextToken = std::move(value); } 90 91 /** 92 * <p>A continuation token, if the list of connections returned does not include 93 * the last of the filtered connections.</p> 94 */ SetNextToken(const char * value)95 inline void SetNextToken(const char* value) { m_nextToken.assign(value); } 96 97 /** 98 * <p>A continuation token, if the list of connections returned does not include 99 * the last of the filtered connections.</p> 100 */ WithNextToken(const Aws::String & value)101 inline GetConnectionsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} 102 103 /** 104 * <p>A continuation token, if the list of connections returned does not include 105 * the last of the filtered connections.</p> 106 */ WithNextToken(Aws::String && value)107 inline GetConnectionsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} 108 109 /** 110 * <p>A continuation token, if the list of connections returned does not include 111 * the last of the filtered connections.</p> 112 */ WithNextToken(const char * value)113 inline GetConnectionsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} 114 115 private: 116 117 Aws::Vector<Connection> m_connectionList; 118 119 Aws::String m_nextToken; 120 }; 121 122 } // namespace Model 123 } // namespace Glue 124 } // namespace Aws 125