Interface AwsRdsDbStatusInfo.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AwsRdsDbStatusInfo.Builder,AwsRdsDbStatusInfo>,SdkBuilder<AwsRdsDbStatusInfo.Builder,AwsRdsDbStatusInfo>,SdkPojo
- Enclosing class:
- AwsRdsDbStatusInfo
public static interface AwsRdsDbStatusInfo.Builder extends SdkPojo, CopyableBuilder<AwsRdsDbStatusInfo.Builder,AwsRdsDbStatusInfo>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AwsRdsDbStatusInfo.Buildermessage(String message)If the read replica is currently in an error state, provides the error details.AwsRdsDbStatusInfo.Buildernormal(Boolean normal)Whether the read replica instance is operating normally.AwsRdsDbStatusInfo.Builderstatus(String status)The status of the read replica instance.AwsRdsDbStatusInfo.BuilderstatusType(String statusType)The type of status.-
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
AwsRdsDbStatusInfo.Builder statusType(String statusType)
The type of status. For a read replica, the status type is read replication.
- Parameters:
statusType- The type of status. For a read replica, the status type is read replication.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
normal
AwsRdsDbStatusInfo.Builder normal(Boolean normal)
Whether the read replica instance is operating normally.
- Parameters:
normal- Whether the read replica instance is operating normally.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
AwsRdsDbStatusInfo.Builder status(String status)
The status of the read replica instance.
- Parameters:
status- The status of the read replica instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
AwsRdsDbStatusInfo.Builder message(String message)
If the read replica is currently in an error state, provides the error details.
- Parameters:
message- If the read replica is currently in an error state, provides the error details.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-