Module Values_0.BasicAuthenticationCredentialsSource

For supplying basic auth credentials when not providing a SecretArn value.

Sourcetype nonrec t = {
  1. username : Username.t option;
    (*

    The username to connect to the data source.

    *)
  2. password : Password.t option;
    (*

    The password to connect to the data source.

    *)
}
Sourceval make : ?username:??? -> ?password:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Username.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