Interface CfnDBInstance.DBInstanceStatusInfoProperty

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

@Stability(Stable) public static interface CfnDBInstance.DBInstanceStatusInfoProperty extends software.amazon.jsii.JsiiSerializable
Provides a list of status information for a DB 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.rds.*;
 DBInstanceStatusInfoProperty dBInstanceStatusInfoProperty = DBInstanceStatusInfoProperty.builder()
         .message("message")
         .normal(false)
         .status("status")
         .statusType("statusType")
         .build();
 

See Also: