Interface CfnStack.RdsDbInstanceProperty

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

@Stability(Stable) public static interface CfnStack.RdsDbInstanceProperty extends software.amazon.jsii.JsiiSerializable
Describes an Amazon RDS instance.

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.opsworks.*;
 RdsDbInstanceProperty rdsDbInstanceProperty = RdsDbInstanceProperty.builder()
         .dbPassword("dbPassword")
         .dbUser("dbUser")
         .rdsDbInstanceArn("rdsDbInstanceArn")
         .build();