Module Values.AuthParameterSource

Information about required authentication parameters.

Sourcetype nonrec t = {
  1. key : Key.t option;
    (*

    The authentication key required to authenticate with the connector.

    *)
  2. isRequired : Boolean.t option;
    (*

    Indicates whether this authentication parameter is required.

    *)
  3. label : Label.t option;
    (*

    Label used for authentication parameter.

    *)
  4. description : Description.t option;
    (*

    A description about the authentication parameter.

    *)
  5. isSensitiveField : Boolean.t option;
    (*

    Indicates whether this authentication parameter is a sensitive field.

    *)
  6. connectorSuppliedValues : ConnectorSuppliedValueList.t option;
    (*

    Contains default values for this authentication parameter that are supplied by the connector.

    *)
}
Sourceval make : ?key:??? -> ?isRequired:??? -> ?label:??? -> ?description:??? -> ?isSensitiveField:??? -> ?connectorSuppliedValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of ConnectorSuppliedValue.t ] list | `String of Key.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