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

UserAuthConfig

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

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

interface UserAuthConfig {
AuthScheme?: AuthScheme | 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.

§
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.

§
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.