Module Values_1.ConnectionPropertiesConfigurationSource

Configuration that defines the base URL and additional request parameters needed during connection creation.

Sourcetype nonrec t = {
  1. url : Values_0.ConnectorProperty.t option;
    (*

    The base instance URL for the endpoint that this connection type will connect to.

    *)
  2. additionalRequestParameters : ConnectorPropertyList.t option;
    (*

    Key-value pairs of additional request parameters that may be needed during connection creation, such as API versions or service-specific configuration options.

    *)
}
Sourceval make : ?url:??? -> ?additionalRequestParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string ]) list ] list | `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string ]) 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