Module Values.DescribeConnectorProfilesRequestSource

Returns 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.

Sourcetype nonrec t = {
  1. connectorProfileNames : ConnectorProfileNameList.t option;
    (*

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

    *)
  2. connectorType : ConnectorType.t option;
    (*

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

    *)
  3. 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/.

    *)
  4. 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).

    *)
  5. nextToken : NextToken.t option;
    (*

    The pagination token for the next page of data.

    *)
}
Sourceval make : ?connectorProfileNames:??? -> ?connectorType:??? -> ?connectorLabel:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t