Interface CfnDBCluster.MasterUserSecretProperty

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

@Stability(Stable) public static interface CfnDBCluster.MasterUserSecretProperty extends software.amazon.jsii.JsiiSerializable
The MasterUserSecret return value specifies the secret managed by RDS in AWS Secrets Manager for the master user password.

For more information, see Password management with AWS Secrets Manager in the Amazon RDS User Guide and Password management with AWS Secrets Manager in the Amazon Aurora User Guide.

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.*;
 MasterUserSecretProperty masterUserSecretProperty = MasterUserSecretProperty.builder()
         .kmsKeyId("kmsKeyId")
         .secretArn("secretArn")
         .build();