Module Values_2.TestConnectionInputSource

A structure that is used to specify testing a connection to a service.

Sourcetype nonrec t = {
  1. connectionType : Values_1.ConnectionType.t;
    (*

    The type of connection to test. This operation is only available for the JDBC or SALESFORCE connection types.

    *)
  2. connectionProperties : Values_1.ConnectionProperties.t;
    (*

    The key-value pairs that define parameters for the connection. JDBC connections use the following connection properties: Required: All of (HOST, PORT, JDBC_ENGINE) or JDBC_CONNECTION_URL. Required: All of (USERNAME, PASSWORD) or SECRET_ID. Optional: JDBC_ENFORCE_SSL, CUSTOM_JDBC_CERT, CUSTOM_JDBC_CERT_STRING, SKIP_CUSTOM_JDBC_CERT_VALIDATION. These parameters are used to configure SSL with JDBC. SALESFORCE connections require the AuthenticationConfiguration member to be configured.

    *)
  3. authenticationConfiguration : Values_0.AuthenticationConfigurationInput.t option;
    (*

    A structure containing the authentication configuration in the TestConnection request. Required for a connection to Salesforce using OAuth authentication.

    *)
}
Sourceval context_ : string
Sourceval make : ?authenticationConfiguration:??? -> connectionType:Values_1.ConnectionType.t -> connectionProperties:Values_1.ConnectionProperties.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `Enum of string ] * [> `String of Values_0.ValueString.t ]) list | `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `Enum of string | `Map of ([> `String of string ] * [> `String of string ]) list | `String of string | `Structure of (string * [> `String of string ]) list ]) list ]) list ]) 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