Interface CfnDBProxy.AuthFormatProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBProxy.AuthFormatProperty.Jsii$Proxy
Enclosing class:
CfnDBProxy

@Stability(Stable) public static interface CfnDBProxy.AuthFormatProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.rds.*;
 AuthFormatProperty authFormatProperty = AuthFormatProperty.builder()
         .authScheme("authScheme")
         .clientPasswordAuthType("clientPasswordAuthType")
         .description("description")
         .iamAuth("iamAuth")
         .secretArn("secretArn")
         .build();
 

See Also: