Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancestatusinfo.html

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

string

Remarks

If the instance isn't in an error state, this value is blank.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancestatusinfo.html#cfn-rds-dbinstance-dbinstancestatusinfo-message

Normal

Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).

object? Normal { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancestatusinfo.html#cfn-rds-dbinstance-dbinstancestatusinfo-normal

Type union: either bool or IResolvable

Status

The status of the DB instance.

string? Status { get; }
Property Value

string

Remarks

For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancestatusinfo.html#cfn-rds-dbinstance-dbinstancestatusinfo-status

StatusType

This value is currently "read replication.".

string? StatusType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancestatusinfo.html#cfn-rds-dbinstance-dbinstancestatusinfo-statustype

Back to top Generated by DocFX