interface DBInstanceStatusInfoProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBInstancePropsMixin.DBInstanceStatusInfoProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBInstancePropsMixin_DBInstanceStatusInfoProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBInstancePropsMixin.DBInstanceStatusInfoProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBInstancePropsMixin.DBInstanceStatusInfoProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBInstancePropsMixin » 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 { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const dBInstanceStatusInfoProperty: rds_mixins.CfnDBInstancePropsMixin.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.".

.NET
Go
Java
Python
TypeScript