Module Values.CustomAuthConfigSource

Configuration information required for custom authentication.

Sourcetype nonrec t = {
  1. customAuthenticationType : CustomAuthenticationType.t option;
    (*

    The authentication type that the custom connector uses.

    *)
  2. authParameters : AuthParameterList.t option;
    (*

    Information about authentication parameters required for authentication.

    *)
}
Sourceval make : ?customAuthenticationType:??? -> ?authParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of ConnectorSuppliedValue.t ] list | `String of Key.t ]) list ] list | `String of CustomAuthenticationType.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