Module Values.DescribeConnectorProfilesResponseSource

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. connectorProfileDetails : ConnectorProfileDetailList.t option;
    (*

    Returns information about the connector profiles associated with the flow.

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

    The pagination token for the next page of data. If nextToken=null, this means that all records have been fetched.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?connectorProfileDetails:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `String of ConnectorProfileArn.t | `Structure of (string * [> `Enum of string | `String of PrivateConnectionProvisioningFailureMessage.t | `Structure of (string * [> `Boolean of Boolean.t | `Integer of PortNumber.t | `Map of ([> `String of ProfilePropertyKey.t ] * [> `String of ProfilePropertyValue.t ]) list | `String of InstanceUrl.t | `Structure of (string * [> `Enum of string | `List of [> `String of OAuthScope.t ] list | `Map of ([> `String of CustomPropertyKey.t ] * [> `String of CustomPropertyValue.t ]) list | `String of TokenUrl.t ]) list ]) list ]) list | `Timestamp of Date.t ]) list ] 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