aws-cdk-lib.aws_rds.CfnDBProxy.AuthFormatProperty

interface AuthFormatProperty

LanguageType name
.NETAmazon.CDK.AWS.RDS.CfnDBProxy.AuthFormatProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBProxy_AuthFormatProperty
Javasoftware.amazon.awscdk.services.rds.CfnDBProxy.AuthFormatProperty
Pythonaws_cdk.aws_rds.CfnDBProxy.AuthFormatProperty
TypeScript aws-cdk-lib » aws_rds » CfnDBProxy » AuthFormatProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from 'aws-cdk-lib';
const authFormatProperty: rds.CfnDBProxy.AuthFormatProperty = {
  authScheme: 'authScheme',
  clientPasswordAuthType: 'clientPasswordAuthType',
  description: 'description',
  iamAuth: 'iamAuth',
  secretArn: 'secretArn',
};

Properties

NameTypeDescription
authScheme?stringThe type of authentication that the proxy uses for connections from the proxy to the underlying database.
clientPasswordAuthType?stringSpecifies the details of authentication used by a proxy to log in as a specific database user.
description?stringA user-specified description about the authentication used by a proxy to log in as a specific database user.
iamAuth?stringWhether to require or disallow AWS Identity and Access Management (IAM) authentication for connections to the proxy.
secretArn?stringThe Amazon Resource Name (ARN) representing the secret that the proxy uses to authenticate to the RDS DB instance or Aurora DB cluster.

authScheme?

Type: string (optional)

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

Valid Values: SECRETS


clientPasswordAuthType?

Type: string (optional)

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


description?

Type: string (optional)

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


iamAuth?

Type: string (optional)

Whether to require or disallow AWS 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.

Valid Values: ENABLED | DISABLED | REQUIRED


secretArn?

Type: string (optional)

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.