interface DBInstanceStatusInfoProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.RDS.CfnDBInstance.DBInstanceStatusInfoProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBInstance_DBInstanceStatusInfoProperty | 
|  Java | software.amazon.awscdk.services.rds.CfnDBInstance.DBInstanceStatusInfoProperty | 
|  Python | aws_cdk.aws_rds.CfnDBInstance.DBInstanceStatusInfoProperty | 
|  TypeScript | aws-cdk-lib»aws_rds»CfnDBInstance»DBInstanceStatusInfoProperty | 
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 { aws_rds as rds } from 'aws-cdk-lib';
const dBInstanceStatusInfoProperty: rds.CfnDBInstance.DBInstanceStatusInfoProperty = {
  message: 'message',
  normal: false,
  status: 'status',
  statusType: 'statusType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| message? | string | Details of the error if there is an error for the instance. | 
| normal? | boolean | IResolvable | Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE). | 
| status? | string | The status of the DB instance. | 
| status | string | This value is currently "read replication.". | 
message?
Type:
string
(optional)
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.
normal?
Type:
boolean | IResolvable
(optional)
Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).
status?
Type:
string
(optional)
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.
statusType?
Type:
string
(optional)
This value is currently "read replication.".
