/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Appflow { namespace Model { /** */ class DescribeConnectorProfilesRequest : public AppflowRequest { public: AWS_APPFLOW_API DescribeConnectorProfilesRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeConnectorProfiles"; } AWS_APPFLOW_API Aws::String SerializePayload() const override; /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline const Aws::Vector& GetConnectorProfileNames() const{ return m_connectorProfileNames; } /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline bool ConnectorProfileNamesHasBeenSet() const { return m_connectorProfileNamesHasBeenSet; } /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline void SetConnectorProfileNames(const Aws::Vector& value) { m_connectorProfileNamesHasBeenSet = true; m_connectorProfileNames = value; } /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline void SetConnectorProfileNames(Aws::Vector&& value) { m_connectorProfileNamesHasBeenSet = true; m_connectorProfileNames = std::move(value); } /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline DescribeConnectorProfilesRequest& WithConnectorProfileNames(const Aws::Vector& value) { SetConnectorProfileNames(value); return *this;} /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline DescribeConnectorProfilesRequest& WithConnectorProfileNames(Aws::Vector&& value) { SetConnectorProfileNames(std::move(value)); return *this;} /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline DescribeConnectorProfilesRequest& AddConnectorProfileNames(const Aws::String& value) { m_connectorProfileNamesHasBeenSet = true; m_connectorProfileNames.push_back(value); return *this; } /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline DescribeConnectorProfilesRequest& AddConnectorProfileNames(Aws::String&& value) { m_connectorProfileNamesHasBeenSet = true; m_connectorProfileNames.push_back(std::move(value)); return *this; } /** *

The name of the connector profile. The name is unique for each * ConnectorProfile in the Amazon Web Services account.

*/ inline DescribeConnectorProfilesRequest& AddConnectorProfileNames(const char* value) { m_connectorProfileNamesHasBeenSet = true; m_connectorProfileNames.push_back(value); return *this; } /** *

The type of connector, such as Salesforce, Amplitude, and so on.

*/ inline const ConnectorType& GetConnectorType() const{ return m_connectorType; } /** *

The type of connector, such as Salesforce, Amplitude, and so on.

*/ inline bool ConnectorTypeHasBeenSet() const { return m_connectorTypeHasBeenSet; } /** *

The type of connector, such as Salesforce, Amplitude, and so on.

*/ inline void SetConnectorType(const ConnectorType& value) { m_connectorTypeHasBeenSet = true; m_connectorType = value; } /** *

The type of connector, such as Salesforce, Amplitude, and so on.

*/ inline void SetConnectorType(ConnectorType&& value) { m_connectorTypeHasBeenSet = true; m_connectorType = std::move(value); } /** *

The type of connector, such as Salesforce, Amplitude, and so on.

*/ inline DescribeConnectorProfilesRequest& WithConnectorType(const ConnectorType& value) { SetConnectorType(value); return *this;} /** *

The type of connector, such as Salesforce, Amplitude, and so on.

*/ inline DescribeConnectorProfilesRequest& WithConnectorType(ConnectorType&& value) { SetConnectorType(std::move(value)); return *this;} /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline const Aws::String& GetConnectorLabel() const{ return m_connectorLabel; } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline bool ConnectorLabelHasBeenSet() const { return m_connectorLabelHasBeenSet; } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline void SetConnectorLabel(const Aws::String& value) { m_connectorLabelHasBeenSet = true; m_connectorLabel = value; } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline void SetConnectorLabel(Aws::String&& value) { m_connectorLabelHasBeenSet = true; m_connectorLabel = std::move(value); } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline void SetConnectorLabel(const char* value) { m_connectorLabelHasBeenSet = true; m_connectorLabel.assign(value); } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline DescribeConnectorProfilesRequest& WithConnectorLabel(const Aws::String& value) { SetConnectorLabel(value); return *this;} /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline DescribeConnectorProfilesRequest& WithConnectorLabel(Aws::String&& value) { SetConnectorLabel(std::move(value)); return *this;} /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account. Only * needed if calling for CUSTOMCONNECTOR connector type/.

*/ inline DescribeConnectorProfilesRequest& WithConnectorLabel(const char* value) { SetConnectorLabel(value); return *this;} /** *

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

Specifies the maximum number of items that should be returned in the result * set. The default for maxResults is 20 (for all paginated API * operations).

*/ inline DescribeConnectorProfilesRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} /** *

The pagination token for the next page of data.

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

The pagination token for the next page of data.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

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

The pagination token for the next page of data.

*/ inline DescribeConnectorProfilesRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::Vector m_connectorProfileNames; bool m_connectorProfileNamesHasBeenSet = false; ConnectorType m_connectorType; bool m_connectorTypeHasBeenSet = false; Aws::String m_connectorLabel; bool m_connectorLabelHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws