Values.DescribeConnectorProfilesRequestSourceReturns a list of connector-profile details matching the provided connector-profile names and connector-types. Both input lists are optional, and you can use them to filter the result. If no names or connector-types are provided, returns all connector profiles in a paginated form. If there is no match, this operation returns an empty list.
type nonrec t = {connectorProfileNames : ConnectorProfileNameList.t option;The name of the connector profile. The name is unique for each ConnectorProfile in the Amazon Web Services account.
*)connectorType : ConnectorType.t option;The type of connector, such as Salesforce, Amplitude, and so on.
*)connectorLabel : ConnectorLabel.t option;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/.
*)maxResults : MaxResults.t option;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).
*)nextToken : NextToken.t option;The pagination token for the next page of data.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Integer of MaxResults.t
| `List of [> `String of ConnectorProfileName.t ] list
| `String of ConnectorLabel.t ])
list ]