Interface DBParameterGroupStatus.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DBParameterGroupStatus.Builder,DBParameterGroupStatus>
,SdkBuilder<DBParameterGroupStatus.Builder,DBParameterGroupStatus>
,SdkPojo
- Enclosing class:
- DBParameterGroupStatus
public static interface DBParameterGroupStatus.Builder extends SdkPojo, CopyableBuilder<DBParameterGroupStatus.Builder,DBParameterGroupStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DBParameterGroupStatus.Builder
dbParameterGroupName(String dbParameterGroupName)
The name of the DB parameter group.DBParameterGroupStatus.Builder
parameterApplyStatus(String parameterApplyStatus)
The status of parameter updates.-
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
-
dbParameterGroupName
DBParameterGroupStatus.Builder dbParameterGroupName(String dbParameterGroupName)
The name of the DB parameter group.
- Parameters:
dbParameterGroupName
- The name of the DB parameter group.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
parameterApplyStatus
DBParameterGroupStatus.Builder parameterApplyStatus(String parameterApplyStatus)
The status of parameter updates. Valid values are:
-
applying
: The parameter group change is being applied to the database. -
failed-to-apply
: The parameter group is in an invalid state. -
in-sync
: The parameter group change is synchronized with the database. -
pending-database-upgrade
: The parameter group change will be applied after the DB instance is upgraded. -
pending-reboot
: The parameter group change will be applied after the DB instance reboots.
- Parameters:
parameterApplyStatus
- The status of parameter updates. Valid values are:-
applying
: The parameter group change is being applied to the database. -
failed-to-apply
: The parameter group is in an invalid state. -
in-sync
: The parameter group change is synchronized with the database. -
pending-database-upgrade
: The parameter group change will be applied after the DB instance is upgraded. -
pending-reboot
: The parameter group change will be applied after the DB instance reboots.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
-