Module Values.DescribeConnectorsRequestSource

Describes the connectors vended by Amazon AppFlow for specified connector types. If you don't specify a connector type, this operation describes all connectors vended by Amazon AppFlow. If there are more connectors than can be returned in one page, the response contains a nextToken object, which can be be passed in to the next call to the DescribeConnectors API operation to retrieve the next page.

Sourcetype nonrec t = {
  1. connectorTypes : ConnectorTypeList.t option;
    (*

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

    *)
  2. maxResults : MaxResults.t option;
    (*

    The maximum number of items that should be returned in the result set. The default is 20.

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

    The pagination token for the next page of data.

    *)
}
Sourceval make : ?connectorTypes:??? -> ?maxResults:??? -> ?nextToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Enum of string ] list | `String of NextToken.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