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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDBInstance.DBInstanceStatusInfoPropertystatic final classAn implementation forCfnDBInstance.DBInstanceStatusInfoProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringDetails of the error if there is an error for the instance.default ObjectIndicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).default StringThe status of the DB instance.default StringThis value is currently "read replication.".Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMessage
Details of the error if there is an error for the instance.If the instance isn't in an error state, this value is blank.
- See Also:
-
getNormal
Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).Returns union: either
BooleanorIResolvable- See Also:
-
getStatus
The status of the DB instance.For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.
- See Also:
-
getStatusType
This value is currently "read replication.".- See Also:
-
builder
-