Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UserAuthConfigInfo

import type { UserAuthConfigInfo } from "https://aws-api.deno.dev/v0.4/services/rds.ts?docs=full";

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

interface UserAuthConfigInfo {
AuthScheme?: AuthScheme | null;
ClientPasswordAuthType?: ClientPasswordAuthType | null;
Description?: string | null;
IAMAuth?: IAMAuthMode | null;
SecretArn?: string | null;
UserName?: string | null;
}

§Properties

§
AuthScheme?: AuthScheme | null
[src]

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

§
ClientPasswordAuthType?: ClientPasswordAuthType | null
[src]

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

§
Description?: string | null
[src]

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

§
IAMAuth?: IAMAuthMode | null
[src]

Whether to require or disallow Amazon Web Services Identity and Access Management (IAM) authentication for connections to the proxy. The ENABLED value is valid only for proxies with RDS for Microsoft SQL Server.

§
SecretArn?: string | null
[src]

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.

§
UserName?: string | null
[src]

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