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

Describes the fields for that connector entity. For example, for an * account entity, the fields would be account name, account * ID, and so on.

*/ inline const Aws::Vector& GetConnectorEntityFields() const{ return m_connectorEntityFields; } /** *

Describes the fields for that connector entity. For example, for an * account entity, the fields would be account name, account * ID, and so on.

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

Describes the fields for that connector entity. For example, for an * account entity, the fields would be account name, account * ID, and so on.

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

Describes the fields for that connector entity. For example, for an * account entity, the fields would be account name, account * ID, and so on.

*/ inline DescribeConnectorEntityResult& WithConnectorEntityFields(const Aws::Vector& value) { SetConnectorEntityFields(value); return *this;} /** *

Describes the fields for that connector entity. For example, for an * account entity, the fields would be account name, account * ID, and so on.

*/ inline DescribeConnectorEntityResult& WithConnectorEntityFields(Aws::Vector&& value) { SetConnectorEntityFields(std::move(value)); return *this;} /** *

Describes the fields for that connector entity. For example, for an * account entity, the fields would be account name, account * ID, and so on.

*/ inline DescribeConnectorEntityResult& AddConnectorEntityFields(const ConnectorEntityField& value) { m_connectorEntityFields.push_back(value); return *this; } /** *

Describes the fields for that connector entity. For example, for an * account entity, the fields would be account name, account * ID, and so on.

*/ inline DescribeConnectorEntityResult& AddConnectorEntityFields(ConnectorEntityField&& value) { m_connectorEntityFields.push_back(std::move(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 DescribeConnectorEntityResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeConnectorEntityResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeConnectorEntityResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_connectorEntityFields; Aws::String m_requestId; }; } // namespace Model } // namespace Appflow } // namespace Aws