Interface CfnDBInstance.IDBInstanceStatusInfoProperty
Provides a list of status information for a DB instance.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDBInstance.IDBInstanceStatusInfoProperty
Syntax (vb)
Public Interface CfnDBInstance.IDBInstanceStatusInfoProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var dBInstanceStatusInfoProperty = new DBInstanceStatusInfoProperty {
Message = "message",
Normal = false,
Status = "status",
StatusType = "statusType"
};
Synopsis
Properties
| Message | Details of the error if there is an error for the instance. |
| Normal | Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE). |
| Status | The status of the DB instance. |
| StatusType | This value is currently "read replication.". |
Properties
Message
Details of the error if there is an error for the instance.
string? Message { get; }
Property Value
Remarks
If the instance isn't in an error state, this value is blank.
Normal
Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).
object? Normal { get; }
Property Value
Remarks
Status
The status of the DB instance.
string? Status { get; }
Property Value
Remarks
For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.
StatusType
This value is currently "read replication.".
string? StatusType { get; }