/** * 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 Appflow { namespace Model { class DescribeConnectorProfilesResult { public: AWS_APPFLOW_API DescribeConnectorProfilesResult(); AWS_APPFLOW_API DescribeConnectorProfilesResult(const Aws::AmazonWebServiceResult& result); AWS_APPFLOW_API DescribeConnectorProfilesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Returns information about the connector profiles associated with the flow. *

*/ inline const Aws::Vector& GetConnectorProfileDetails() const{ return m_connectorProfileDetails; } /** *

Returns information about the connector profiles associated with the flow. *

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

Returns information about the connector profiles associated with the flow. *

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

Returns information about the connector profiles associated with the flow. *

*/ inline DescribeConnectorProfilesResult& WithConnectorProfileDetails(const Aws::Vector& value) { SetConnectorProfileDetails(value); return *this;} /** *

Returns information about the connector profiles associated with the flow. *

*/ inline DescribeConnectorProfilesResult& WithConnectorProfileDetails(Aws::Vector&& value) { SetConnectorProfileDetails(std::move(value)); return *this;} /** *

Returns information about the connector profiles associated with the flow. *

*/ inline DescribeConnectorProfilesResult& AddConnectorProfileDetails(const ConnectorProfile& value) { m_connectorProfileDetails.push_back(value); return *this; } /** *

Returns information about the connector profiles associated with the flow. *

*/ inline DescribeConnectorProfilesResult& AddConnectorProfileDetails(ConnectorProfile&& value) { m_connectorProfileDetails.push_back(std::move(value)); return *this; } /** *

The pagination token for the next page of data. If * nextToken=null, this means that all records have been fetched.

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

The pagination token for the next page of data. If * nextToken=null, this means that all records have been fetched.

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

The pagination token for the next page of data. If * nextToken=null, this means that all records have been fetched.

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

The pagination token for the next page of data. If * nextToken=null, this means that all records have been fetched.

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

The pagination token for the next page of data. If * nextToken=null, this means that all records have been fetched.

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

The pagination token for the next page of data. If * nextToken=null, this means that all records have been fetched.

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

The pagination token for the next page of data. If * nextToken=null, this means that all records have been fetched.

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