Module Values_0.UserAuthConfigInfoSource

Returns the details of authentication used by a proxy to log in as a specific database user.

Sourcetype nonrec t = {
  1. description : String_.t option;
    (*

    A user-specified description about the authentication used by a proxy to log in as a specific database user.

    *)
  2. userName : String_.t option;
    (*

    The name of the database user to which the proxy connects.

    *)
  3. authScheme : AuthScheme.t option;
    (*

    The type of authentication that the proxy uses for connections from the proxy to the underlying database.

    *)
  4. secretArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster. These secrets are stored within Amazon Secrets Manager.

    *)
  5. iAMAuth : IAMAuthMode.t option;
    (*

    Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy.

    *)
  6. clientPasswordAuthType : ClientPasswordAuthType.t option;
    (*

    The type of authentication the proxy uses for connections from clients.

    *)
}
Sourceval make : ?description:??? -> ?userName:??? -> ?authScheme:??? -> ?secretArn:??? -> ?iAMAuth:??? -> ?clientPasswordAuthType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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