Module Values_1.KeyPairCredentialsSource

The combination of username, private key and passphrase that are used as credentials.

Sourcetype nonrec t = {
  1. keyPairUsername : DbUsername.t;
    (*

    Username

    *)
  2. privateKey : PrivateKey.t;
    (*

    PrivateKey

    *)
  3. privateKeyPassphrase : PrivateKeyPassphrase.t option;
    (*

    PrivateKeyPassphrase

    *)
}
Sourceval context_ : string
Sourceval make : ?privateKeyPassphrase:??? -> keyPairUsername:DbUsername.t -> privateKey:PrivateKey.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DbUsername.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