Interface DBInstanceStatusInfo.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DBInstanceStatusInfo.Builder,DBInstanceStatusInfo>
,SdkBuilder<DBInstanceStatusInfo.Builder,DBInstanceStatusInfo>
,SdkPojo
- Enclosing class:
- DBInstanceStatusInfo
public static interface DBInstanceStatusInfo.Builder extends SdkPojo, CopyableBuilder<DBInstanceStatusInfo.Builder,DBInstanceStatusInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DBInstanceStatusInfo.Builder
message(String message)
Details of the error if there is an error for the instance.DBInstanceStatusInfo.Builder
normal(Boolean normal)
Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).DBInstanceStatusInfo.Builder
status(String status)
The status of the DB instance.DBInstanceStatusInfo.Builder
statusType(String statusType)
This value is currently "read replication."-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
statusType
DBInstanceStatusInfo.Builder statusType(String statusType)
This value is currently "read replication."
- Parameters:
statusType
- This value is currently "read replication."- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
normal
DBInstanceStatusInfo.Builder normal(Boolean normal)
Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).
- Parameters:
normal
- Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DBInstanceStatusInfo.Builder status(String status)
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.
- Parameters:
status
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
DBInstanceStatusInfo.Builder message(String message)
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.
- Parameters:
message
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-